mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Restoring layout for split windows works betters now. Some sticky window
changes/fixes. Renamed /WINDOW MOVE LEFT|RIGHT -> PREV|NEXT, added commands /WINDOW MOVE UP|DOWN|LEFT|RIGHT. The new LEFT|RIGHT now moves the window only inside split windows. mainwindows-save.c -> mainwindows-layout.c git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1710 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
58f52343fd
commit
45bb5c3cee
11 changed files with 415 additions and 366 deletions
|
|
@ -65,8 +65,8 @@ void lastlog_deinit(void);
|
|||
void mainwindow_activity_init(void);
|
||||
void mainwindow_activity_deinit(void);
|
||||
|
||||
void mainwindows_save_init(void);
|
||||
void mainwindows_save_deinit(void);
|
||||
void mainwindows_layout_init(void);
|
||||
void mainwindows_layout_deinit(void);
|
||||
|
||||
static GMainLoop *main_loop;
|
||||
int quitting;
|
||||
|
|
@ -129,7 +129,7 @@ static void textui_finish_init(void)
|
|||
lastlog_init();
|
||||
mainwindows_init();
|
||||
mainwindow_activity_init();
|
||||
mainwindows_save_init();
|
||||
mainwindows_layout_init();
|
||||
gui_windows_init();
|
||||
statusbar_init();
|
||||
screen_refresh_thaw();
|
||||
|
|
@ -167,7 +167,7 @@ static void textui_deinit(void)
|
|||
gui_printtext_deinit();
|
||||
gui_readline_deinit();
|
||||
gui_windows_deinit();
|
||||
mainwindows_save_deinit();
|
||||
mainwindows_layout_deinit();
|
||||
mainwindow_activity_deinit();
|
||||
mainwindows_deinit();
|
||||
gui_expandos_deinit();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue