Skip to content

Commit ac85ab8

Browse files
committed
Properly load checkbox value for "New tabs appear after the current tab"
Resolves addressable portion of #2261
1 parent 8bd93bb commit ac85ab8

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

guake/prefs.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1175,6 +1175,10 @@ def load_configs(self):
11751175
value = self.settings.general.get_boolean("fullscreen-hide-tabbar")
11761176
self.get_widget("fullscreen_hide_tabbar").set_active(value)
11771177

1178+
# new tabs appear after current tab
1179+
value = self.settings.general.get_boolean("new-tab-after")
1180+
self.get_widget("new_tab_after").set_active(value)
1181+
11781182
# hide tabbar if only one tab
11791183
value = self.settings.general.get_boolean("hide-tabs-if-one-tab")
11801184
self.get_widget("hide_tabs_if_one_tab").set_active(value)
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
release_summary: >
2+
Properly load checkbox value for "New tabs appear after the current tab" setting on startup.
3+
4+
5+
fixes:
6+
- |
7+
8+
- "New tabs appear after the current tab" option unchecked at start regardless of actual value. #2261

0 commit comments

Comments
 (0)