qss fix for launcher labels

This commit is contained in:
Micah
2020-10-14 14:52:01 -04:00
parent 1b1bcdee98
commit 364dafbde5
2 changed files with 6 additions and 2 deletions
@@ -16,12 +16,14 @@ QLabel#error-message {
/*
* LauncherWindow
*/
LauncherWindow QLabel {
font-family: Segoe UI;
font-weight:600;
}
LauncherWindow QLabel#label_choose, QLabel#label_options {
color: #ddd;
font-size:10pt;
font-weight:600;
}
LauncherWindow QLabel#clear {
@@ -123,6 +123,7 @@ LauncherWindow::LauncherWindow(std::string basePath, bool profileEnabled,
QLabel* labelChoose = new QLabel("Choose Profile", centralWidget);
labelChoose->setObjectName("clear");
labelChoose->setGeometry(geometry::ChooseLabel);
labelChoose->setObjectName("label_choose");
_profileBox = new QComboBox(centralWidget);
_profileBox->setObjectName("config");
@@ -131,6 +132,7 @@ LauncherWindow::LauncherWindow(std::string basePath, bool profileEnabled,
QLabel* optionsLabel = new QLabel("Window Options", centralWidget);
optionsLabel->setObjectName("clear");
optionsLabel->setGeometry(geometry::OptionsLabel);
optionsLabel->setObjectName("label_options");
_windowConfigBox = new QComboBox(centralWidget);
_windowConfigBox->setObjectName("config");