Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
98599f74
Commit
98599f74
authored
Feb 13, 2010
by
Jan Djärv
Browse files
xterm.c (x_clear_frame_area): Cal gtk_widget_queue_draw if USE_GTK,
bug #5571.
parent
f5952338
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
src/ChangeLog
src/ChangeLog
+5
-0
src/xterm.c
src/xterm.c
+5
-0
No files found.
src/ChangeLog
View file @
98599f74
2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
* xterm.c (x_clear_frame_area): Cal gtk_widget_queue_draw if USE_GTK,
bug #5571.
2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
* xsmfns.c (x_session_initialize): Move initialization of ice_fd and
...
...
src/xterm.c
View file @
98599f74
...
...
@@ -7446,6 +7446,11 @@ x_clear_frame_area (f, x, y, width, height)
{
x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
x, y, width, height, False);
#ifdef USE_GTK
/* Must queue a redraw, because scroll bars might have been cleared. */
if (FRAME_GTK_WIDGET (f))
gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
#endif
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment