mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Fixed untabbing
This commit is contained in:
parent
ff8aae1a72
commit
c4a5ab6cd1
1 changed files with 2 additions and 2 deletions
|
@ -2104,7 +2104,7 @@ namespace IDE.ui
|
|||
|
||||
int32 startRevision = mData.mCurTextVersionId;
|
||||
|
||||
bool doAutocomplete = (keyChar == '\t') && (!mWidgetWindow.IsKeyDown(.Shift));
|
||||
bool doAutocomplete = isTab;
|
||||
if ((mAutoComplete != null) && (keyChar == '\r') &&
|
||||
((!mIsMultiline) || (mAutoComplete.mIsUserRequested)))
|
||||
doAutocomplete = true;
|
||||
|
@ -2116,7 +2116,7 @@ namespace IDE.ui
|
|||
|
||||
if (gApp.mSettings.mEditorSettings.mAutoCompleteRequireTab)
|
||||
{
|
||||
doAutocomplete = keyChar == '\t';
|
||||
doAutocomplete = isTab;
|
||||
if (keyChar == '\r')
|
||||
{
|
||||
if (mAutoComplete != null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue