- Timestamp:
- Jun 13, 2008, 2:59:01 PM (13 years ago)
- Location:
- neercs/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
neercs/trunk/src/main.c
r2368 r2369 90 90 screen_list->width = cucul_get_canvas_width(cv); 91 91 screen_list->height = cucul_get_canvas_height(cv) - ((mini*6) + (status)); 92 screen_list->wm_type = WM_ CARD;92 screen_list->wm_type = WM_VSPLIT; 93 93 screen_list->in_bell = 0; 94 94 -
neercs/trunk/src/wm.c
r2367 r2369 65 65 { 66 66 int i; 67 int w = (screen_list->width / screen_list->count) ;67 int w = (screen_list->width / screen_list->count) - 1; 68 68 int h = (screen_list->height) - 2; 69 69 … … 89 89 screen_list->screen[i]->x = 1; 90 90 screen_list->screen[i]->y = (i*h) + 1; 91 92 91 resize_screen(screen_list->screen[i], 93 92 w, h - 1);
Note: See TracChangeset
for help on using the changeset viewer.