diff --git a/Source/Editor/Windows/Search/ContentSearchWindow.cs b/Source/Editor/Windows/Search/ContentSearchWindow.cs index 7c433f6ca..695fc335a 100644 --- a/Source/Editor/Windows/Search/ContentSearchWindow.cs +++ b/Source/Editor/Windows/Search/ContentSearchWindow.cs @@ -135,10 +135,18 @@ namespace FlaxEngine.Windows.Search /// public override bool OnKeyDown(KeyboardKeys key) { - if (IsFocused && key == KeyboardKeys.Return && Navigate != null) + if (IsFocused) { - Navigate.Invoke(this); - return true; + if (key == KeyboardKeys.Return && Navigate != null) + { + Navigate.Invoke(this); + return true; + } + if (key == KeyboardKeys.C && Root.GetKey(KeyboardKeys.Control)) + { + Clipboard.Text = Text; + return true; + } } return base.OnKeyDown(key); }