B2016-246 Control-Shift Right-Arrow changed to extend select * from ITEMS IIon a word to the right at a time
This commit is contained in:
parent
c837496f24
commit
600bbc52ea
@ -2178,6 +2178,12 @@ namespace Volian.Controls.Library
|
|||||||
e.Handled = true;
|
e.Handled = true;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if(e.Control && e.Shift && SelectionStart == 0)//b2016-246 Ctrl-Shift-Right Arrow extend select * from ITEMS IIon a word at a time
|
||||||
|
{
|
||||||
|
SelectionLength++;
|
||||||
|
this.AutoWordSelection = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (e.Control || SelectionStart == this.Text.Length)
|
if (e.Control || SelectionStart == this.Text.Length)
|
||||||
{
|
{
|
||||||
StepRTB_ArrowPressed(e.Control ? E_ArrowKeys.CtrlRight : E_ArrowKeys.Right);
|
StepRTB_ArrowPressed(e.Control ? E_ArrowKeys.CtrlRight : E_ArrowKeys.Right);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user