- Timestamp:
- Jun 13, 2008, 5:49:23 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
neercs/trunk/src/wm.c
r2369 r2376 27 27 28 28 if(w==s->w && h==s->h) return; 29 if(w == 0 || h == 0) return;29 if(w <= 0 || h <= 0) return; 30 30 31 31 s->w = w; … … 67 67 int w = (screen_list->width / screen_list->count) - 1; 68 68 int h = (screen_list->height) - 2; 69 70 69 71 70 for(i = 0; i < screen_list->count; i++)
Note: See TracChangeset
for help on using the changeset viewer.