From 14965f73d354e705c270cc7a4e4cdc3832046c72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Cort=C3=A9z?= Date: Tue, 9 Dec 2014 08:26:33 -0600 Subject: [PATCH] Invisible shorcuts no blocks itself when passes through the events buffer --- src/gui/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/main.py b/src/gui/main.py index a44b3b5a..df524ac1 100644 --- a/src/gui/main.py +++ b/src/gui/main.py @@ -596,7 +596,7 @@ class mainFrame(wx.Frame): output.speak(self.nb.GetPageText(self.nb.GetSelection())+",", True) def skip_blank_pages(self, forward=True): - if self.nb.GetCurrentPage().type == "account" or self.nb.GetCurrentPage().type == "empty" and (self.showing == False or platform.system() == "Darwin"): + if self.nb.GetCurrentPage().type == "account" or self.nb.GetCurrentPage().type == "empty": self.nb.AdvanceSelection(forward) def close(self, ev=None):