1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-03-14 16:33:00 +01:00

fix: dict, not list

This commit is contained in:
aclist 2025-01-06 23:30:14 +09:00
parent c9c8337c3b
commit 0e18839024
2 changed files with 5 additions and 5 deletions

View file

@ -584,7 +584,7 @@ fetch_helpers_by_sum(){
[[ -f "$config_file" ]] && source "$config_file" [[ -f "$config_file" ]] && source "$config_file"
declare -A sums declare -A sums
sums=( sums=(
["ui.py"]="a2f9134c9b415a2be1d54a7e91065ee0" ["ui.py"]="d3ad9153d8599bea0eede9fd3121ee8e"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067" ["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="b928622aa16e966a5098df02bce6dc3b" ["funcs"]="b928622aa16e966a5098df02bce6dc3b"

View file

@ -2445,10 +2445,10 @@ class ModSelectionPanel(Gtk.Box):
self.set_orientation(Gtk.Orientation.VERTICAL) self.set_orientation(Gtk.Orientation.VERTICAL)
labels = [ labels = [
["label": "Select all", "tooltip": "Bulk selects all mods"], {"label": "Select all", "tooltip": "Bulk selects all mods"},
["label": "Unselect all", "tooltip": "Bulk unselects all mods"], {"label": "Unselect all", "tooltip": "Bulk unselects all mods"},
["label": "Delete selected", "tooltip": "Deletes selected mods from the system"], {"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": "Highlight stale", "tooltip": "Shows locally-installed mods\nwhich are not used by any server\nin your Saved Servers"}
] ]
self.active_button = None self.active_button = None