diff --git a/IRaCIS.Core.Application/Service/Reading/ShortcutKey/ShortcutKeyService.cs b/IRaCIS.Core.Application/Service/Reading/ShortcutKey/ShortcutKeyService.cs index dc1592d23..6b484c41e 100644 --- a/IRaCIS.Core.Application/Service/Reading/ShortcutKey/ShortcutKeyService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ShortcutKey/ShortcutKeyService.cs @@ -64,7 +64,7 @@ namespace IRaCIS.Core.Application.Service AltKey = isnull ? false : key.AltKey, CtrlKey = isnull ? false : key.CtrlKey, MetaKey = isnull ? false : key.MetaKey, - ShiftKey = isnull ? false : key.ShiftKey, + ShiftKey = isnull && int.Parse(x.Code) == 11 ? true : isnull ? false : key.ShiftKey, Text = isnull ? defaultkey.Text : key.Text, Code = isnull ? defaultkey.Code : key.Code, });