mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Fixed unindenting selection
This commit is contained in:
parent
62e62ed907
commit
efbef794e0
1 changed files with 2 additions and 4 deletions
|
@ -2079,9 +2079,7 @@ namespace IDE.ui
|
|||
return;
|
||||
}
|
||||
|
||||
if ((keyChar == '\t') && (mWidgetWindow.IsKeyDown(.Shift)))
|
||||
return;
|
||||
|
||||
bool isTab = (keyChar == '\t') && (!mWidgetWindow.IsKeyDown(.Shift));
|
||||
if ((gApp.mSymbolReferenceHelper != null) && (gApp.mSymbolReferenceHelper.IsRenaming))
|
||||
{
|
||||
if ((keyChar == '\r') || (keyChar == '\n'))
|
||||
|
@ -2106,7 +2104,7 @@ namespace IDE.ui
|
|||
|
||||
int32 startRevision = mData.mCurTextVersionId;
|
||||
|
||||
bool doAutocomplete = (keyChar == '\t');
|
||||
bool doAutocomplete = (keyChar == '\t') && (!mWidgetWindow.IsKeyDown(.Shift));
|
||||
if ((mAutoComplete != null) && (keyChar == '\r') &&
|
||||
((!mIsMultiline) || (mAutoComplete.mIsUserRequested)))
|
||||
doAutocomplete = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue