Skip to content

Commit

Permalink
Fixed an issue with Shift+Tab tab completion code screwing up Shift+a…
Browse files Browse the repository at this point in the history
…nything else key presses.
  • Loading branch information
lstratman committed May 29, 2013
1 parent d73b5e4 commit 7c3b9b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/TerminalControl/Terminal/TerminalPane.cs
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ private bool ProcessDialogKeyInNormalMode(Keys key, Keys keybody, Keys modifiers
ProcessSequenceKey(modifiers, keybody);
return true;
}
else if (modifiers == Keys.Shift && (keybody & (Keys.Back | Keys.LButton)) == (Keys.Back | Keys.LButton) && SendShiftTab)
else if (modifiers == Keys.Shift && keybody == (Keys.Back | Keys.LButton) && SendShiftTab)
{
SendBytes(new byte[] { (byte)'\t' });
return true;
Expand Down

0 comments on commit 7c3b9b2

Please sign in to comment.