mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-07 03:49:43 -05:00
qss fix for launcher labels
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user