- Timestamp:
- Jun 20, 2010, 4:25:38 PM (13 years ago)
- Branches:
- master, release-1.10, release-1.7, release-1.8, release-1.9
- Children:
- b9d04ad
- Parents:
- 58ea109
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
window.c
r58ea109 r9379760 315 315 } 316 316 317 int owl_window_is_subwin(owl_window *w) 318 { 319 return w->pan == NULL && !w->is_screen; 320 } 321 317 322 static void _owl_window_realize(owl_window *w) 318 323 { … … 403 408 if (!w->dirty) return; 404 409 if (w->win) { 405 if ( !owl_window_is_toplevel(w)) {410 if (owl_window_is_subwin(w)) { 406 411 /* If a subwin, we might have gotten random touched lines from wsyncup or 407 412 * past drawing. That information is useless, so we discard it all */
Note: See TracChangeset
for help on using the changeset viewer.