1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-06-28 11:58:57 +02:00

fix: drop fullscreen

This commit is contained in:
aclist 2024-01-13 09:54:17 +09:00
parent e5c78f95ad
commit 0bc160c13f
3 changed files with 3 additions and 6 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.11
# 5.0.0-rc.12
app_name = "DZGUI"
cache = {}
@ -1497,9 +1497,6 @@ class App(Gtk.Application):
self.win = OuterWindow(is_steam_deck)
if is_steam_deck == 1:
self.win.fullscreen()
accel = Gtk.AccelGroup()
accel.connect(Gdk.KEY_q, Gdk.ModifierType.CONTROL_MASK, Gtk.AccelFlags.VISIBLE, self._halt_window_subprocess)
self.win.add_accel_group(accel)