From 0bc160c13f9e5804b116268b9b73da75d1ec1c84 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Sat, 13 Jan 2024 09:54:17 +0900 Subject: [PATCH] fix: drop fullscreen --- dzgui.sh | 2 +- helpers/funcs | 2 +- helpers/ui.py | 5 +---- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/dzgui.sh b/dzgui.sh index e86e143..8c7bfe0 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -527,7 +527,7 @@ fetch_dzq(){ fetch_helpers_by_sum(){ declare -A sums sums=( - ["ui.py"]="16db16b6fba95758e866ee955b573f01" + ["ui.py"]="5b614859376857b3579dbc7fd1db783d" ["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["funcs"]="d9b0e6fa68314c18ac7aad565645948f" diff --git a/helpers/funcs b/helpers/funcs index 1061b49..6c50b81 100755 --- a/helpers/funcs +++ b/helpers/funcs @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -o pipefail -version=5.0.0.rc-11 +version=5.0.0.rc-12 #CONSTANTS aid=221100 diff --git a/helpers/ui.py b/helpers/ui.py index babcbd6..000e8ac 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -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)