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:
parent
c9c8337c3b
commit
0e18839024
2 changed files with 5 additions and 5 deletions
helpers
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue