diff options
| -rw-r--r-- | data/rc.xml | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/data/rc.xml b/data/rc.xml index ff5830dc..15ab65b0 100644 --- a/data/rc.xml +++ b/data/rc.xml @@ -331,14 +331,24 @@ </mousebind> <mousebind button="Up" action="Click"> - <action name="Shade"/> - <action name="FocusToBottom"/> - <action name="Unfocus"/> - <action name="Lower"/> + <action name="if"> + <shaded>no</shaded> + <then> + <action name="Shade"/> + <action name="FocusToBottom"/> + <action name="Unfocus"/> + <action name="Lower"/> + </then> + </action> </mousebind> <mousebind button="Down" action="Click"> - <action name="Unshade"/> - <action name="Raise"/> + <action name="if"> + <shaded>yes</shaded> + <then> + <action name="Unshade"/> + <action name="Raise"/> + </then> + </action> </mousebind> <mousebind button="Right" action="Press"> |
