diff --git a/source/widgets/settings_window/settings_group.py b/source/widgets/settings_window/settings_group.py index 3e1411d..9ef6437 100644 --- a/source/widgets/settings_window/settings_group.py +++ b/source/widgets/settings_window/settings_group.py @@ -1,22 +1,15 @@ from __future__ import annotations from modules.icons import Icons -from PyQt5.QtCore import QSize, Qt, pyqtSignal, pyqtSlot -from PyQt5.QtNetwork import QLocalServer +from PyQt5.QtCore import pyqtSignal, pyqtSlot + from PyQt5.QtWidgets import ( - QAction, - QApplication, QCheckBox, QFrame, QGridLayout, - QHBoxLayout, QLabel, QLayout, QPushButton, - QStatusBar, - QSystemTrayIcon, - QTabWidget, - QVBoxLayout, QWidget, ) diff --git a/source/windows/main_window.py b/source/windows/main_window.py index 85753d9..6041a31 100644 --- a/source/windows/main_window.py +++ b/source/windows/main_window.py @@ -303,7 +303,7 @@ def draw(self, polish=False): self.UserTabLayout = QVBoxLayout() self.UserTabLayout.setContentsMargins(0, 0, 0, 0) self.UserTab.setLayout(self.UserTabLayout) - self.TabWidget.addTab(self.UserTab, "User") + self.TabWidget.addTab(self.UserTab, "Favorites") self.LibraryToolBox = BaseToolBoxWidget(self) self.DownloadsToolBox = BaseToolBoxWidget(self) @@ -383,7 +383,7 @@ def draw(self, polish=False): show_reload=True, extended_selection=True, ) - self.UserCustomListWidget = self.UserToolBox.add_page_widget(self.UserCustomPageWidget, "Custom") + self.UserCustomListWidget = self.LibraryToolBox.add_page_widget(self.UserCustomPageWidget, "Custom") self.TabWidget.setCurrentIndex(get_default_tab()) self.LibraryToolBox.setCurrentIndex(get_default_library_page())