summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gui_gtk_x11.c8
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 6 deletions
diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c
index d0d946cc0..21a6ed109 100644
--- a/src/gui_gtk_x11.c
+++ b/src/gui_gtk_x11.c
@@ -6261,7 +6261,7 @@ gui_mch_invert_rectangle(int r, int c, int nr, int nc)
};
cairo_t * const cr = cairo_create(gui.surface);
- set_cairo_source_rgba_from_color(cr, gui.norm_pixel ^ gui.back_pixel);
+ cairo_set_source_rgba(cr, 1.0, 1.0, 1.0, 1.0);
# if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,9,2)
cairo_set_operator(cr, CAIRO_OPERATOR_DIFFERENCE);
# else
@@ -6281,13 +6281,9 @@ gui_mch_invert_rectangle(int r, int c, int nr, int nc)
if (gui.drawarea->window == NULL)
return;
- values.foreground.pixel = gui.norm_pixel ^ gui.back_pixel;
- values.background.pixel = gui.norm_pixel ^ gui.back_pixel;
- values.function = GDK_XOR;
+ values.function = GDK_INVERT;
invert_gc = gdk_gc_new_with_values(gui.drawarea->window,
&values,
- GDK_GC_FOREGROUND |
- GDK_GC_BACKGROUND |
GDK_GC_FUNCTION);
gdk_gc_set_exposures(invert_gc, gui.visibility !=
GDK_VISIBILITY_UNOBSCURED);
diff --git a/src/version.c b/src/version.c
index 9701d6d82..9208d6a0c 100644
--- a/src/version.c
+++ b/src/version.c
@@ -704,6 +704,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 454,
+/**/
453,
/**/
452,