Skip to content

Commit 6200e9b

Browse files
authored
Merge pull request #15938 from nvaccess/beta
Merge beta to master
2 parents 0632ee8 + d91d1ad commit 6200e9b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

source/gui/addonGui.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ def installAddon(parentWindow: wx.Window, addonPath: str) -> bool: # noqa: C901
150150
_showAddonRequiresNVDAUpdateDialog(parentWindow, bundle._addonGuiModel)
151151
return False # Exit early, addon does not have required support
152152
elif bundle.canOverrideCompatibility:
153-
if _shouldInstallWhenAddonTooOldDialog(parentWindow, bundle._addonGuiModel):
153+
shouldInstall, rememberChoice = _shouldInstallWhenAddonTooOldDialog(parentWindow, bundle._addonGuiModel)
154+
if shouldInstall:
154155
# Install incompatible version
155156
bundle.enableCompatibilityOverride()
156157
else:

0 commit comments

Comments
 (0)