diff --git a/mRemoteV1/App/App.Runtime.vb b/mRemoteV1/App/App.Runtime.vb index 836270ac..d9e1ee4f 100644 --- a/mRemoteV1/App/App.Runtime.vb +++ b/mRemoteV1/App/App.Runtime.vb @@ -289,11 +289,12 @@ Namespace App End Sub Public Shared Sub RegisterHotKeys() - 'Register HotKey - 'Ctrl-Tab | Advance one tab - HotKey_CtrlTab = New clsHotKeyRegister(clsHotKeyRegister.ModifierKey.Ctrl, Keys.Tab) - 'Shift-Tab | Reverse one tab - HotKey_ShiftTab = New clsHotKeyRegister(clsHotKeyRegister.ModifierKey.Ctrl + clsHotKeyRegister.ModifierKey.Shift, Keys.Tab) + ' This causes Ctrl-Tab and Ctrl-Shift-Tab to not work in any other applications. Not good. Disabled for now. + ' 'Register HotKey + ' 'Ctrl-Tab | Advance one tab + ' HotKey_CtrlTab = New clsHotKeyRegister(clsHotKeyRegister.ModifierKey.Ctrl, Keys.Tab) + ' 'Shift-Tab | Reverse one tab + ' HotKey_ShiftTab = New clsHotKeyRegister(clsHotKeyRegister.ModifierKey.Ctrl + clsHotKeyRegister.ModifierKey.Shift, Keys.Tab) End Sub Public Shared Sub UpdateCheck() @@ -461,9 +462,9 @@ Namespace App End If End If - 'Unregister Hotkeys - HotKey_CtrlTab.Unregister() - HotKey_ShiftTab.Unregister() + ' 'Unregister Hotkeys + ' HotKey_CtrlTab.Unregister() + ' HotKey_ShiftTab.Unregister() sS.Save() Catch ex As Exception