overview is default view

This commit is contained in:
iLLiCiTiT 2020-11-17 10:37:49 +01:00
parent 9ec415d2ff
commit 266dc08a84
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ UseLabel = True
# Customize which tab to start on. Possible choices are: "artist", "overview"
# and "terminal".
InitialTab = "artist"
InitialTab = "overview"
# Customize the window size.
WindowSize = (430, 600)

View file

@ -520,7 +520,7 @@ class Window(QtWidgets.QDialog):
("terminal", terminal_page)
)
current_page = settings.InitialTab or "artist"
current_page = settings.InitialTab or "overview"
self.comment_main_widget.setVisible(
not current_page == "terminal"
)