Skip to content

Commit 84addd5

Browse files
authoredApr 22, 2017
autopep8 fix
1 parent 2c603a8 commit 84addd5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/guake/guake_app.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ def show_hide(self, *args):
760760
event_time = self.hotkeys.get_current_event_time()
761761

762762
if self.client.get_bool(KEY('/general/focus_if_open')) and \
763-
not self.client.get_bool(KEY('/general/window_losefocus')):
763+
not self.client.get_bool(KEY('/general/window_losefocus')):
764764
if self.losefocus_time and self.losefocus_time < event_time:
765765
if self.window.window and self.window.get_property('visible'):
766766
log.debug("DBG: Restoring the focus to the terminal")
@@ -769,9 +769,9 @@ def show_hide(self, *args):
769769
self.losefocus_time = 0
770770
return
771771
elif self.losefocus_time and \
772-
self.client.get_bool(KEY('/general/window_losefocus')):
772+
self.client.get_bool(KEY('/general/window_losefocus')):
773773
if self.losefocus_time >= event_time and \
774-
(self.losefocus_time - event_time) < 10:
774+
(self.losefocus_time - event_time) < 10:
775775
self.losefocus_time = 0
776776
return
777777

0 commit comments

Comments
 (0)
Please sign in to comment.