From e6d981036dd75290754242252455c9743a2d25c8 Mon Sep 17 00:00:00 2001 From: Saas Date: Thu, 14 May 2026 23:41:41 +0200 Subject: [PATCH] scroll on editor start --- Source/Editor/Windows/ContentWindow.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/Editor/Windows/ContentWindow.cs b/Source/Editor/Windows/ContentWindow.cs index 7014732ac..42bbb8f27 100644 --- a/Source/Editor/Windows/ContentWindow.cs +++ b/Source/Editor/Windows/ContentWindow.cs @@ -559,7 +559,7 @@ namespace FlaxEditor.Windows } /// - /// Enables or disables vertical and horizontal scrolling on the content tree panel + /// Enables or disables vertical and horizontal scrolling on the content tree panel /// /// The state to set scrolling to public void ScrollingOnTreeView(bool enabled) @@ -571,7 +571,7 @@ namespace FlaxEditor.Windows } /// - /// Enables or disables vertical and horizontal scrolling on the content view panel + /// Enables or disables vertical and horizontal scrolling on the content view panel /// /// The state to set scrolling to public void ScrollingOnContentView(bool enabled) @@ -1555,6 +1555,7 @@ namespace FlaxEditor.Windows PerformLayout(); } UpdateViewDropdownBounds(); + ScrollNavigationBarToCurrentFolder(); } }