1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-04 19:43:00 +02:00

fix: drop unused parameter

This commit is contained in:
aclist 2024-11-21 23:58:38 +09:00
parent 08af994361
commit 6e375d3f24
2 changed files with 4 additions and 3 deletions

View file

@ -158,6 +158,7 @@ find_stale_mods(){
printf "%s\n" "$res" >> $_cache_stale_mods_temp
fi
done
printf ""
return 99
}
get_player_count(){

View file

@ -651,7 +651,7 @@ def process_shell_return_code(transient_parent, msg, code, original_input):
case 99:
# highlight stale mods
panel = transient_parent.grid.sel_panel
panel.colorize_cells(msg, True)
panel.colorize_cells(True)
case 100:
# final handoff before launch
final_conf = spawn_dialog(transient_parent, msg, Popup.CONFIRM)
@ -2379,9 +2379,9 @@ class ModSelectionPanel(Gtk.Box):
case "Highlight stale":
process_tree_option([treeview.view, RowType.HIGHLIGHT], treeview)
case "Unhighlight stale":
self.colorize_cells(None, False)
self.colorize_cells(False)
def colorize_cells(self, mods, bool):
def colorize_cells(self, bool):
def _colorize(path, color):
mod_store[path][4] = color