From 8ef7f7cb1a0c39222dd21e929c8b63f81ecde486 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Sat, 30 Nov 2024 23:21:23 +0100 Subject: [PATCH] Add `F` key shortcut to show whole curve in editor view --- Source/Editor/GUI/CurveEditor.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/Editor/GUI/CurveEditor.cs b/Source/Editor/GUI/CurveEditor.cs index abf68d39e..1de56b993 100644 --- a/Source/Editor/GUI/CurveEditor.cs +++ b/Source/Editor/GUI/CurveEditor.cs @@ -935,6 +935,11 @@ namespace FlaxEditor.GUI KeyframesEditorUtils.Paste(this); return true; } + else if (options.FocusSelection.Process(this)) + { + ShowWholeCurve(); + return true; + } return false; }