Skip to content

Commit

Permalink
Properly load checkbox value for "New tabs appear after the current tab"
Browse files Browse the repository at this point in the history
Resolves addressable portion of #2261
  • Loading branch information
Davidy22 committed Jan 6, 2025
1 parent 8bd93bb commit ac85ab8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions guake/prefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1175,6 +1175,10 @@ def load_configs(self):
value = self.settings.general.get_boolean("fullscreen-hide-tabbar")
self.get_widget("fullscreen_hide_tabbar").set_active(value)

# new tabs appear after current tab
value = self.settings.general.get_boolean("new-tab-after")
self.get_widget("new_tab_after").set_active(value)

# hide tabbar if only one tab
value = self.settings.general.get_boolean("hide-tabs-if-one-tab")
self.get_widget("hide_tabs_if_one_tab").set_active(value)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
release_summary: >
Properly load checkbox value for "New tabs appear after the current tab" setting on startup.
fixes:
- |
- "New tabs appear after the current tab" option unchecked at start regardless of actual value. #2261

0 comments on commit ac85ab8

Please sign in to comment.