1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Fix: Only primary cursor scrolls AutoComplete list

This commit is contained in:
Chernyavsky Andrey 2025-05-16 14:44:02 +05:00
parent c6fa2b8e79
commit 1d9c51e28d

View file

@ -4692,7 +4692,7 @@ namespace IDE.ui
if (((keyCode == KeyCode.Up) || (keyCode == KeyCode.Down) || (keyCode == KeyCode.PageUp) || (keyCode == KeyCode.PageDown)))
{
if ((!autoCompleteRequireControl) || (mWidgetWindow.IsKeyDown(KeyCode.Control)))
if ((IsPrimaryTextCursor()) && ((!autoCompleteRequireControl) || (mWidgetWindow.IsKeyDown(KeyCode.Control))))
{
if ((mAutoComplete != null) && (mAutoComplete.IsShowing()))
{