Fix editor window closing when using RMB + Ctrl + W for slow camera flight
This commit is contained in:
@@ -192,6 +192,13 @@ namespace FlaxEditor.Windows
|
|||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public override bool OnKeyDown(KeyboardKeys key)
|
public override bool OnKeyDown(KeyboardKeys key)
|
||||||
{
|
{
|
||||||
|
// Prevent closing the editor window when using RMB + Ctrl + W to slow down the camera flight
|
||||||
|
if (Editor.Options.Options.Input.CloseTab.Process(this, key))
|
||||||
|
{
|
||||||
|
if (Root.GetMouseButton(MouseButton.Right))
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
if (base.OnKeyDown(key))
|
if (base.OnKeyDown(key))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user