From aefa230d6394f59b5bed7b7e628b7b1e1d892386 Mon Sep 17 00:00:00 2001 From: noctuid Date: Tue, 1 Sep 2015 22:30:42 -0400 Subject: [PATCH] Prevent monitor checking for auto_hide and auto_show (doesn't do anything) --- tdrop | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tdrop b/tdrop index 00b3973..5f7ad34 100755 --- a/tdrop +++ b/tdrop @@ -625,10 +625,6 @@ auto_show() { # Main # -if $multiple_monitors; then - update_geometry_settings_for_monitor -fi - if $auto_detect_wm; then wm_autoset_for_all if [[ $term == auto_show ]] || [[ $term == auto_hide ]]; then @@ -648,6 +644,9 @@ if [[ -n $1 ]]; then elif [[ $term == auto_show ]]; then auto_show else + if $multiple_monitors; then + update_geometry_settings_for_monitor + fi wid_toggle fi else