From b61e806009d43faac9d6ae49a1af0b34e87eeb8a Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Thu, 13 Aug 2026 13:24:26 +0900 Subject: [PATCH] chore: lowercase launch flags for conformity with parser --- dzgui/util/strings.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/dzgui/util/strings.py b/dzgui/util/strings.py index 6a06416..696b2c0 100644 --- a/dzgui/util/strings.py +++ b/dzgui/util/strings.py @@ -472,10 +472,10 @@ class Flags: flags = Flags( description="DayZ server browser and mod manager", - version="Print version information", - uninstall="Clean up state/config files", - debug="Enable developer debugging features", - map_count="Check and update system map count value" + version="print version information", + uninstall="clean up state/config files", + debug="enable developer debugging features", + map_count="check and update system map count value", ) @@ -543,9 +543,7 @@ connect_panel = ConnectPanel( add="Add", add_con="Add/connect", placeholder="Enter IP (IP:Query port)", - entry_tooltip=( - "- IP: format as IP:Query port\ne.g. 192.168.1.1:27016" - ), + entry_tooltip=("- IP: format as IP:Query port\ne.g. 192.168.1.1:27016"), add_tooltip="Add to Saved Servers", connect_tooltip="Connect to this server", )