bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#15398: UNS: Re: bug#15398: UNS: Re: bug#15398: 24.3; Frame redraw co


From: Stefan Monnier
Subject: bug#15398: UNS: Re: bug#15398: UNS: Re: bug#15398: 24.3; Frame redraw completely screwed
Date: Thu, 19 Sep 2013 10:04:36 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)

> FWIW I see something similar on Debian 7.0.0 with GTK 3.4.2: Menu texts
> and tooltips don't disappear - they overlay the frame areas after the
> newlines of buffers and stay there even when scrolling.

I think it's a very recent change.  Might be for example r114314
What happens if you undo this patch?  (quoted below)


        Stefan


=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-09-17 06:33:24 +0000
+++ b/src/ChangeLog     2013-09-17 06:57:30 +0000
@@ -5,6 +5,8 @@
        (fn_g_type_init) [!WINDOWSNT]: Define only if Glib < 2.36.0.
        * xsettings.c (init_gconf, init_gsettings): Do not check
        for g_type_init.
+       * xterm.c (handle_one_xevent): Do not call to x_clear_area
+       if GTK >= 2.7.0.
 
 2013-09-16  Jan Djärv  <jan.h.d@swipnet.se>
 

=== modified file 'src/xterm.c'
--- a/src/xterm.c       2013-09-16 11:23:03 +0000
+++ b/src/xterm.c       2013-09-17 06:57:30 +0000
@@ -6151,7 +6151,7 @@
       f = x_window_to_frame (dpyinfo, event->xexpose.window);
       if (f)
         {
-#ifdef USE_GTK
+#if ! GTK_CHECK_VERSION (2, 7, 0)
           /* This seems to be needed for GTK 2.6.  */
          x_clear_area (event->xexpose.display,
                        event->xexpose.window,


[3. text/plain]

_______________________________________________
Emacs-diffs mailing list
Emacs-diffs@gnu.org
https://lists.gnu.org/mailman/listinfo/emacs-diffs





reply via email to

[Prev in Thread] Current Thread [Next in Thread]