This commit is contained in:
jmdaweb 2014-12-09 17:10:44 +01:00
commit ceb8266828
2 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@ VIAddVersionKey ProductVersion "0.50"
VIAddVersionKey FileVersion "0.50"
VIProductVersion "0.50.0.0"
!insertmacro MUI_PAGE_WELCOME
!define MUI_LICENSEPAGE_RADIOBUTTONS
!insertmacro MUI_PAGE_LICENSE "license.txt"
!insertmacro MUI_PAGE_DIRECTORY
var StartMenuFolder

View File

@ -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):