mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 14:24:10 +02:00
Another autocomplete null check for output window
This commit is contained in:
parent
d18e12866b
commit
21366d48ec
1 changed files with 1 additions and 1 deletions
|
@ -3786,7 +3786,7 @@ namespace IDE.ui
|
||||||
|
|
||||||
public void ShowAutoComplete(bool isUserRequested)
|
public void ShowAutoComplete(bool isUserRequested)
|
||||||
{
|
{
|
||||||
if (gApp.mSettings.mEditorSettings.mAutoCompleteShowKind != .None)
|
if ((gApp.mSettings.mEditorSettings.mAutoCompleteShowKind != .None) && (mOnGenerateAutocomplete != null))
|
||||||
{
|
{
|
||||||
if (IsCursorVisible(false))
|
if (IsCursorVisible(false))
|
||||||
mOnGenerateAutocomplete('\0', isUserRequested ? .UserRequested : .None);
|
mOnGenerateAutocomplete('\0', isUserRequested ? .UserRequested : .None);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue