1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-06 16:25:59 +02:00

Fixes for ShowWrongHash, looking into debug info issues in opt llvm

This commit is contained in:
Brian Fiete 2019-09-24 08:58:04 -07:00
parent c67fbd66ba
commit 54d5884213
8 changed files with 69 additions and 34 deletions

View file

@ -34,7 +34,7 @@ namespace Beefy.theme.dark
public bool mHasClosed;
public Insets mRelWidgetMouseInsets ~ delete _;
public bool mAllowMouseInsideSelf;
public bool mRequireMouseInside;
public bool mAllowMouseOutside;
public const float cShadowSize = 8;
@ -224,7 +224,7 @@ namespace Beefy.theme.dark
if (mWidgetWindow == null)
return;
if (!mRequireMouseInside)
if (mAllowMouseOutside)
return;
float rootX;