You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem most likely lies in EditorScene.cs, there's something about ImGui that we are misunderstanding that's causing a weird behaviour when trying to cycle through tabs.
Basically we need it to cycle only the _selectedTab to the windows opened on _selectedAssets.
The text was updated successfully, but these errors were encountered:
I've noticed that commenting out "ImGui.SetNextWindowFocus()" in EditorScene_Editors.cs (line 76) makes tab switching better. It's not perfect - at the end of cycle it switches focus to the main menu but it is still better than with the line present.
Not sure what are the side effects.
The problem most likely lies in
EditorScene.cs
, there's something about ImGui that we are misunderstanding that's causing a weird behaviour when trying to cycle through tabs.Basically we need it to cycle only the
_selectedTab
to the windows opened on_selectedAssets
.The text was updated successfully, but these errors were encountered: