diff options
author | James Booth <boothj5@gmail.com> | 2016-09-25 20:49:54 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-09-25 20:49:54 +0100 |
commit | 3bf383cec6ec272c0584862f6e863bcb1bae9532 (patch) | |
tree | 3b4239ae174facdf64d339e433586d0dfa8053b3 /src/config | |
parent | 6c8def367cd339eb1acc330a433533f2b2b0147c (diff) | |
download | profani-tty-3bf383cec6ec272c0584862f6e863bcb1bae9532.tar.gz |
Fix defaulting win positions
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/preferences.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/config/preferences.c b/src/config/preferences.c index 729efa6c..55cba9d8 100644 --- a/src/config/preferences.c +++ b/src/config/preferences.c @@ -1104,24 +1104,24 @@ prefs_get_win_placement(void) // return default if duplicates found if (titlebar_pos == mainwin_pos) { - return prefs_create_profwin_placement(1, 2, 3, 5); + return prefs_create_profwin_placement(1, 2, 3, 4); } if (titlebar_pos == statusbar_pos) { - return prefs_create_profwin_placement(1, 2, 3, 5); + return prefs_create_profwin_placement(1, 2, 3, 4); } if (titlebar_pos == inputwin_pos) { - return prefs_create_profwin_placement(1, 2, 3, 5); + return prefs_create_profwin_placement(1, 2, 3, 4); } if (mainwin_pos == statusbar_pos) { - return prefs_create_profwin_placement(1, 2, 3, 5); + return prefs_create_profwin_placement(1, 2, 3, 4); } if (mainwin_pos == inputwin_pos) { - return prefs_create_profwin_placement(1, 2, 3, 5); + return prefs_create_profwin_placement(1, 2, 3, 4); } if (statusbar_pos == inputwin_pos) { - return prefs_create_profwin_placement(1, 2, 3, 5); + return prefs_create_profwin_placement(1, 2, 3, 4); } // return settings |