From 1d9c51e28d07a099687b9712682409b4ba91b08e Mon Sep 17 00:00:00 2001 From: Chernyavsky Andrey Date: Fri, 16 May 2025 14:44:02 +0500 Subject: [PATCH] Fix: Only primary cursor scrolls AutoComplete list --- IDE/src/ui/SourceEditWidgetContent.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDE/src/ui/SourceEditWidgetContent.bf b/IDE/src/ui/SourceEditWidgetContent.bf index 9ffdc283..2104d8e4 100644 --- a/IDE/src/ui/SourceEditWidgetContent.bf +++ b/IDE/src/ui/SourceEditWidgetContent.bf @@ -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())) {