/WINDOW BALANCE didn't work properly when topicbar was off. Added a few

comments to mainwindows.h


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1716 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-08-08 14:43:14 +00:00 committed by cras
commit a99458ebe5
2 changed files with 7 additions and 6 deletions

View file

@ -12,9 +12,10 @@ typedef struct {
SCREEN_WINDOW *screen_win;
int sticky_windows; /* number of sticky windows */
int first_line, last_line, width, height;
int first_line, last_line; /* first/last line used by this window (0..x), not including statusbar */
int width, height; /* width/height of the window, not including statusbar */
int statusbar_lines;
int statusbar_lines; /* number of lines the statusbar takes below the window */
void *statusbar;
void *statusbar_window_item;
} MAIN_WINDOW_REC;