From 0e18839024e67211958a2513e869a2794c6bbf51 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Mon, 6 Jan 2025 23:30:14 +0900 Subject: [PATCH] fix: dict, not list --- dzgui.sh | 2 +- helpers/ui.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dzgui.sh b/dzgui.sh index e9e2a12..634ba86 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -584,7 +584,7 @@ fetch_helpers_by_sum(){ [[ -f "$config_file" ]] && source "$config_file" declare -A sums sums=( - ["ui.py"]="a2f9134c9b415a2be1d54a7e91065ee0" + ["ui.py"]="d3ad9153d8599bea0eede9fd3121ee8e" ["query_v2.py"]="55d339ba02512ac69de288eb3be41067" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["funcs"]="b928622aa16e966a5098df02bce6dc3b" diff --git a/helpers/ui.py b/helpers/ui.py index 02fe315..c9aea79 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -2445,10 +2445,10 @@ class ModSelectionPanel(Gtk.Box): self.set_orientation(Gtk.Orientation.VERTICAL) labels = [ - ["label": "Select all", "tooltip": "Bulk selects all mods"], - ["label": "Unselect all", "tooltip": "Bulk unselects all mods"], - ["label": "Delete selected", "tooltip": "Deletes selected mods from the system"], - ["label": "Highlight stale", "tooltip": "Shows locally-installed mods\nwhich are not used by any server\nin your Saved Servers"] + {"label": "Select all", "tooltip": "Bulk selects all mods"}, + {"label": "Unselect all", "tooltip": "Bulk unselects all mods"}, + {"label": "Delete selected", "tooltip": "Deletes selected mods from the system"}, + {"label": "Highlight stale", "tooltip": "Shows locally-installed mods\nwhich are not used by any server\nin your Saved Servers"} ] self.active_button = None