Changeset 1f4ea57


Ignore:
Timestamp:
Jun 20, 2010, 4:29:57 PM (14 years ago)
Author:
David Benjamin <davidben@mit.edu>
Branches:
master, release-1.10, release-1.7, release-1.8, release-1.9
Children:
5cc7e5e
Parents:
b9d04ad
Message:
Allow the screen to get dirtied

It's just painting it that does nothing.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • window.c

    rb9d04ad r1f4ea57  
    384384void owl_window_dirty(owl_window *w)
    385385{
    386   /* don't put the screen on this list; pointless */
    387   if (w->is_screen)
    388     return;
    389386  if (!owl_window_is_realized(w))
    390387    return;
     
    407404{
    408405  if (!w->dirty) return;
    409   if (w->win) {
     406  if (w->win && !w->is_screen) {
    410407    if (owl_window_is_subwin(w)) {
    411408      /* If a subwin, we might have gotten random touched lines from wsyncup or
Note: See TracChangeset for help on using the changeset viewer.