1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-05 20:13:00 +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

View file

@ -527,7 +527,7 @@ fetch_dzq(){
fetch_helpers_by_sum(){ fetch_helpers_by_sum(){
declare -A sums declare -A sums
sums=( sums=(
["ui.py"]="16db16b6fba95758e866ee955b573f01" ["ui.py"]="5b614859376857b3579dbc7fd1db783d"
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197" ["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="d9b0e6fa68314c18ac7aad565645948f" ["funcs"]="d9b0e6fa68314c18ac7aad565645948f"

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version=5.0.0.rc-11 version=5.0.0.rc-12
#CONSTANTS #CONSTANTS
aid=221100 aid=221100

View file

@ -15,7 +15,7 @@ locale.setlocale(locale.LC_ALL, '')
gi.require_version("Gtk", "3.0") gi.require_version("Gtk", "3.0")
from gi.repository import Gtk, GLib, Gdk, GObject, Pango from gi.repository import Gtk, GLib, Gdk, GObject, Pango
# 5.0.0-rc.11 # 5.0.0-rc.12
app_name = "DZGUI" app_name = "DZGUI"
cache = {} cache = {}
@ -1497,9 +1497,6 @@ class App(Gtk.Application):
self.win = OuterWindow(is_steam_deck) self.win = OuterWindow(is_steam_deck)
if is_steam_deck == 1:
self.win.fullscreen()
accel = Gtk.AccelGroup() accel = Gtk.AccelGroup()
accel.connect(Gdk.KEY_q, Gdk.ModifierType.CONTROL_MASK, Gtk.AccelFlags.VISIBLE, self._halt_window_subprocess) accel.connect(Gdk.KEY_q, Gdk.ModifierType.CONTROL_MASK, Gtk.AccelFlags.VISIBLE, self._halt_window_subprocess)
self.win.add_accel_group(accel) self.win.add_accel_group(accel)