diff --git a/nwg_panel/main.py b/nwg_panel/main.py index 84acdf9..04ce1e6 100644 --- a/nwg_panel/main.py +++ b/nwg_panel/main.py @@ -116,13 +116,8 @@ def check_tree(): num = num_active_outputs(tree) if num != common.outputs_num: if num < common.outputs_num: - print("Number of outputs decreased {}, restarting".format(num)) - restart() - else: - print("Number of outputs increased ({}); restart in {} ms." - .format(num, common_settings["restart-delay"])) - # Gdk.threads_add_timeout(GLib.PRIORITY_DEFAULT_IDLE, common_settings["restart-delay"], restart) - restart() + Gdk.threads_add_timeout(GLib.PRIORITY_DEFAULT_IDLE, common_settings["restart-delay"], restart) + # restart() for item in common.taskbars_list: item.refresh(tree)