1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-06-30 04:48:57 +02: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
helpers

View file

@ -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