diff --git a/helpers/funcs b/helpers/funcs index 4642378..6f2404d 100755 --- a/helpers/funcs +++ b/helpers/funcs @@ -158,6 +158,7 @@ find_stale_mods(){ printf "%s\n" "$res" >> $_cache_stale_mods_temp fi done + printf "" return 99 } get_player_count(){ diff --git a/helpers/ui.py b/helpers/ui.py index 1270ace..5753fa8 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -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