atsynedit/atsynedit_cmd_handler.inc
Code: Select all
cCommand_KeyLeft_Sel:
begin
{
if OptMouseColumnSelectionWithoutKey then
Result:= DoCommand_SelectColumnToDirection(TATEditorSelectColumnDirection.Left)
else
Result:= DoCommand_KeyLeft(true);
}
OptMouseColumnSelectionWithoutKey:= false;
Result:= DoCommand_KeyLeft(true);
end;
cCommand_KeyRight:
Result:= DoCommand_KeyRight(false);
cCommand_KeyRight_Sel:
begin
{
if OptMouseColumnSelectionWithoutKey then
Result:= DoCommand_SelectColumnToDirection(TATEditorSelectColumnDirection.Right)
else
Result:= DoCommand_KeyRight(true);
}
OptMouseColumnSelectionWithoutKey:= false;
Result:= DoCommand_KeyRight(true);
end; >> OptMouseColumnSelectionWithoutKey:= false
is turning OFF that option. why it was changed? to fix some UI for some users.