mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-10 10:55:33 +00:00
Merge pull request #1508 from keymanapp/windows-prevent-damaged-profiles-message-silent
[Windows] kmshell now only checks for damaged profiles when starting Configuration or Keyman itself
This commit is contained in:
commit
6f004dab73
2 changed files with 4 additions and 1 deletions
|
|
@ -1,5 +1,8 @@
|
|||
# Keyman Desktop Version History
|
||||
|
||||
## 2019-01-09 11.0.1302.0 beta
|
||||
* Bug Fix: Keyman can no longer show a "Damaged Profile" dialog box during silent installs (#1508)
|
||||
|
||||
## 2019-01-07 11.0.1301.0 beta
|
||||
* Bug Fix: Hotkeys are now correctly assigned to keyboards when installed (#1485)
|
||||
* Change: Removed legacy API: Keyman_BuildKeyboardList, Keyman_GetAPIVersion, GetKeymanKeyboardInfo, GetKeymanInfo, GetSystemStore (#1503)
|
||||
|
|
|
|||
|
|
@ -356,7 +356,7 @@ begin
|
|||
Exit;
|
||||
end;
|
||||
|
||||
if not FSilent and (FMode <> fmRepair) then // I4773
|
||||
if not FSilent and (FMode in [fmStart, fmSplash, fmMain, fmAbout]) then // I4773
|
||||
begin
|
||||
if not TKeyboardTIPCheck.CheckKeyboardTIPInstallStatus then
|
||||
begin
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue