Просмотр исходного кода

Fix dark mode toggle navigation reset.

Preserve the currently selected sidebar page when rebuilding the main panel so toggling dark mode no longer jumps users back to Join Meetings.

Made-with: Cursor
huzaifahayat12 3 месяцев назад
Родитель
Сommit
c9a8c4e7b3
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      meetings_app/ViewController.swift

+ 2 - 1
meetings_app/ViewController.swift

@@ -1731,7 +1731,8 @@ private extension ViewController {
             applyGoogleProfile(profile)
             applyGoogleProfile(profile)
         }
         }
 
 
-        showSidebarPage(.joinMeetings)
+        // Preserve the currently selected page during rebuilds (e.g. dark mode toggle).
+        showSidebarPage(selectedSidebarPage)
 
 
         return panel
         return panel
     }
     }