1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-07-16 04:28:49 +02:00

fix: set debug state on boot

This commit is contained in:
aclist 2024-01-23 16:04:07 +09:00
parent ecedc4e147
commit 7d66ffe418
3 changed files with 10 additions and 7 deletions
helpers

View file

@ -15,7 +15,7 @@ locale.setlocale(locale.LC_ALL, '')
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk, GLib, Gdk, GObject, Pango
# 5.0.0-rc.26
# 5.0.0-rc.27
app_name = "DZGUI"
cache = {}
@ -1526,6 +1526,8 @@ class FilterPanel(Gtk.Box):
self.maps_combo.connect("key-press-event", self._on_esc_pressed)
self.debug_toggle = Gtk.ToggleButton(label="Debug mode")
if query_config(None, "debug")[0] == '1':
self.debug_toggle.set_active(True)
self.debug_toggle.connect("toggled", self._on_button_toggled, "Toggle debug mode")
set_surrounding_margins(self.debug_toggle, 10)