mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
Fix: Only primary cursor scrolls AutoComplete list
This commit is contained in:
parent
c6fa2b8e79
commit
1d9c51e28d
1 changed files with 1 additions and 1 deletions
|
@ -4692,7 +4692,7 @@ namespace IDE.ui
|
||||||
|
|
||||||
if (((keyCode == KeyCode.Up) || (keyCode == KeyCode.Down) || (keyCode == KeyCode.PageUp) || (keyCode == KeyCode.PageDown)))
|
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()))
|
if ((mAutoComplete != null) && (mAutoComplete.IsShowing()))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue