diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-05-30 11:12:19 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-05-30 11:12:19 -0300 |
commit | 014b10ffae521f3abbf7d38c6700bbacf2712134 (patch) | |
tree | 57c0dc366cb3e426bf6d13166a4f7b68a7c8d042 /src/leap/bitmask/gui/statemachines.py | |
parent | 3477cc811fab50268ab6b9427e632253c3e7e1d1 (diff) | |
parent | d4d6b0c5476b45629d632debe4527f9d6cb3cb0e (diff) |
Merge remote-tracking branch 'chiiph/bug/openvpn_not_found' into develop
Diffstat (limited to 'src/leap/bitmask/gui/statemachines.py')
-rw-r--r-- | src/leap/bitmask/gui/statemachines.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/leap/bitmask/gui/statemachines.py b/src/leap/bitmask/gui/statemachines.py index f8e5479d..00a1387e 100644 --- a/src/leap/bitmask/gui/statemachines.py +++ b/src/leap/bitmask/gui/statemachines.py @@ -565,11 +565,15 @@ class ConnectionMachineBuilder(object): button, 'text', off_label) off.assignProperty( button, 'enabled', True) + off.assignProperty( + button, 'visible', True) if action: off.assignProperty( action, 'text', off_label) off.assignProperty( action, 'enabled', True) + off.assignProperty( + action, 'visible', True) off.setObjectName(_OFF) states[_OFF] = off |