diff --git a/MultiTerm.Wpf/Properties/PublishProfiles/ClickOnceProfile.pubxml b/MultiTerm.Wpf/Properties/PublishProfiles/ClickOnceProfile.pubxml index 65f8870..b0b3874 100644 --- a/MultiTerm.Wpf/Properties/PublishProfiles/ClickOnceProfile.pubxml +++ b/MultiTerm.Wpf/Properties/PublishProfiles/ClickOnceProfile.pubxml @@ -4,7 +4,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. --> - 13 + 14 1.0.0.* True Release @@ -36,7 +36,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. index.html BC1274DD90DC13A3CE1634A82AC005CDB6852B06 MultiTerm.Wpf_TemporaryKey.pfx - True|2023-06-06T19:40:32.7933627Z;True|2023-05-31T13:53:55.3496532+02:00;True|2023-05-31T12:15:48.2252015+02:00; + True|2023-07-02T09:49:58.8132399Z;True|2023-06-06T21:40:32.7933627+02:00;True|2023-05-31T13:53:55.3496532+02:00;True|2023-05-31T12:15:48.2252015+02:00; diff --git a/MultiTerm.Wpf/View/ShellView.xaml.cs b/MultiTerm.Wpf/View/ShellView.xaml.cs index b8134f4..9c8965d 100644 --- a/MultiTerm.Wpf/View/ShellView.xaml.cs +++ b/MultiTerm.Wpf/View/ShellView.xaml.cs @@ -25,7 +25,7 @@ public partial class ShellView : UserControl private void UserControl_KeyDown(object sender, System.Windows.Input.KeyEventArgs e) { // move tab forward - if( e.Key == System.Windows.Input.Key.Tab && + if ( e.Key == System.Windows.Input.Key.Tab && e.KeyboardDevice.Modifiers == System.Windows.Input.ModifierKeys.Control ) { this.terminalTabControl.SelectedIndex++; @@ -33,7 +33,7 @@ public partial class ShellView : UserControl } // move tab backwards else if ( e.Key == System.Windows.Input.Key.Tab && - e.KeyboardDevice.Modifiers == (System.Windows.Input.ModifierKeys.Control & System.Windows.Input.ModifierKeys.Shift) ) + e.KeyboardDevice.Modifiers == (System.Windows.Input.ModifierKeys.Control | System.Windows.Input.ModifierKeys.Shift) ) { this.terminalTabControl.SelectedIndex--; e.Handled = true;