Skip to content

Commit

Permalink
Fix initial flash after login
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Dec 14, 2023
1 parent d5b1030 commit 7410b6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion koordinates/gui/koordinates.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,8 @@ def __init__(self, parent):
self.context_tab_container.setFixedHeight(self.context_tab.sizeHint().height())

self.context_frame = ColoredFrame()
self.context_frame.set_color(QColor())
self.context_frame.setObjectName('context_frame')
context_frame_layout = QVBoxLayout()
context_frame_layout.setContentsMargins(0, 0, 0, 0)

Expand Down Expand Up @@ -642,7 +644,6 @@ def __init__(self, parent):

self.button_user.setMenu(self.user_menu)

self._context_tab_changed(self.TAB_EXPLORE_INDEX)
self.context_tab_container.setFixedWidth(self.context_container.width())

KoordinatesClient.instance().loginChanged.connect(self._loginChanged)
Expand Down

0 comments on commit 7410b6b

Please sign in to comment.