Skip to content

Commit 95f0219

Browse files
committed
Fixed issue with command history and parameter suggestions.
1 parent c9ad6b7 commit 95f0219

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Runtime/DevConsoleMono.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2412,6 +2412,11 @@ private void RefreshCommandSuggestions()
24122412

24132413
private void RefreshCommandParameterSuggestions()
24142414
{
2415+
if (_commandHistoryIndex != -1)
2416+
{
2417+
return;
2418+
}
2419+
24152420
string suffix = "";
24162421

24172422
// If there is a current command suggestion, use it for the parameter suggestions

0 commit comments

Comments
 (0)