fixed issue when tabbing through input fields due to wrong binary operation,

published Version 1.0.0.13
master
Jonas Arnold 3 years ago
parent adf05329a6
commit 005b453130
  1. 4
      MultiTerm.Wpf/Properties/PublishProfiles/ClickOnceProfile.pubxml
  2. 2
      MultiTerm.Wpf/View/ShellView.xaml.cs

@ -4,7 +4,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<ApplicationRevision>13</ApplicationRevision>
<ApplicationRevision>14</ApplicationRevision>
<ApplicationVersion>1.0.0.*</ApplicationVersion>
<BootstrapperEnabled>True</BootstrapperEnabled>
<Configuration>Release</Configuration>
@ -36,7 +36,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<WebPageFileName>index.html</WebPageFileName>
<ManifestCertificateThumbprint>BC1274DD90DC13A3CE1634A82AC005CDB6852B06</ManifestCertificateThumbprint>
<ManifestKeyFile>MultiTerm.Wpf_TemporaryKey.pfx</ManifestKeyFile>
<History>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;</History>
<History>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;</History>
</PropertyGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.NetCore.DesktopRuntime.6.0.x64">

@ -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;

Loading…
Cancel
Save