1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-04 23:36:00 +02:00

Adding "CTRL UP/DOWN" tutorial for autocomplete

This commit is contained in:
Brian Fiete 2019-09-23 09:40:56 -07:00
parent e65e4049fa
commit 5f84a7e4e3
3 changed files with 44 additions and 4 deletions

View file

@ -34,6 +34,7 @@ namespace Beefy.theme.dark
public bool mHasClosed;
public Insets mRelWidgetMouseInsets ~ delete _;
public bool mAllowMouseInsideSelf;
public bool mRequireMouseInside;
public const float cShadowSize = 8;
@ -223,9 +224,8 @@ namespace Beefy.theme.dark
if (mWidgetWindow == null)
return;
/*var lastMouseWidget = IDEApp.sApp.sLastMouseWidget;
if ((lastMouseWidget != null) && (lastMouseWidget != mRelWidget) && (lastMouseWidget.mWidgetWindow != mWidgetWindow))
Close();*/
if (!mRequireMouseInside)
return;
float rootX;
float rootY;