aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Djärv2010-02-13 13:54:50 +0100
committerJan Djärv2010-02-13 13:54:50 +0100
commit98599f74d03c2dd4b6ac90d68266c508c5e0342e (patch)
treedfccad9ff2809b3489736ca32867576b3a665539 /src
parentf5952338f46ba62c42054a64c4b8b75ec6dfb51f (diff)
downloademacs-98599f74d03c2dd4b6ac90d68266c508c5e0342e.tar.gz
emacs-98599f74d03c2dd4b6ac90d68266c508c5e0342e.zip
xterm.c (x_clear_frame_area): Cal gtk_widget_queue_draw if USE_GTK,
bug #5571.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/xterm.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 347a6f886b4..a48194a90aa 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12010-02-13 Jan Djärv <jan.h.d@swipnet.se>
2
3 * xterm.c (x_clear_frame_area): Cal gtk_widget_queue_draw if USE_GTK,
4 bug #5571.
5
12010-02-10 Jan Djärv <jan.h.d@swipnet.se> 62010-02-10 Jan Djärv <jan.h.d@swipnet.se>
2 7
3 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and 8 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
diff --git a/src/xterm.c b/src/xterm.c
index 1add3c415e7..9ed98deb7b5 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -7446,6 +7446,11 @@ x_clear_frame_area (f, x, y, width, height)
7446{ 7446{
7447 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), 7447 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7448 x, y, width, height, False); 7448 x, y, width, height, False);
7449#ifdef USE_GTK
7450 /* Must queue a redraw, because scroll bars might have been cleared. */
7451 if (FRAME_GTK_WIDGET (f))
7452 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
7453#endif
7449} 7454}
7450 7455
7451 7456