From 725dd9f38df17913cd0d03ac947a1ec43ac05c51 Mon Sep 17 00:00:00 2001 From: James Teh Date: Mon, 4 Feb 2013 13:17:43 +1000 Subject: [PATCH] Present the New Laptop Keyboard Layout dialog when NVDA starts if it hasn't been presented before. --- source/core.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/core.py b/source/core.py index 66da4f9bc..be55b3108 100644 --- a/source/core.py +++ b/source/core.py @@ -38,6 +38,9 @@ def doStartupDialogs(): gui.messageBox(_("Your gesture map file contains errors.\n" "More details about the errors can be found in the log file."), _("gesture map File Error"), wx.OK|wx.ICON_EXCLAMATION) + if not config.conf["upgrade"]["newLaptopKeyboardLayout"]: + from gui import upgradeAlerts + upgradeAlerts.NewLaptopKeyboardLayout.run() def restart(): """Restarts NVDA by starting a new copy with -r.""" -- 2.11.0