Fix selecting Debug Log window entries with left-mouse button

This commit is contained in:
Wojtek Figat
2022-07-17 17:06:26 +02:00
parent 3239150a61
commit 25790bd0c9

View File

@@ -86,6 +86,7 @@ namespace FlaxEditor.Windows
{
AnchorPreset = AnchorPresets.HorizontalStretchTop;
IsScrollable = true;
AutoFocus = true;
_window = window;
Desc = desc;
@@ -231,6 +232,11 @@ namespace FlaxEditor.Windows
if (base.OnMouseDown(location, button))
return true;
if (button == MouseButton.Left)
{
Focus();
return true;
}
if (button == MouseButton.Right)
{
Focus();