Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make splash screen text white, themeable #5149

Merged
merged 4 commits into from
Aug 27, 2019
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions data/themes/default/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@ TextFloat {
}


/* splash screen text */
QLabel#splashText {
Spekular marked this conversation as resolved.
Show resolved Hide resolved
color: #ffffff;
Spekular marked this conversation as resolved.
Show resolved Hide resolved
}
Spekular marked this conversation as resolved.
Show resolved Hide resolved


QMenu {
border-top: 2px solid #08993E;
background-color: #15191c;
Expand Down
2 changes: 2 additions & 0 deletions src/gui/GuiApplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ GuiApplication::GuiApplication()
QLabel versionLabel(MainWindow::tr( "Version %1" ).arg( LMMS_VERSION ));

loadingProgressLabel.setAlignment(Qt::AlignLeft);
loadingProgressLabel.setObjectName( "splashText" );
Spekular marked this conversation as resolved.
Show resolved Hide resolved
versionLabel.setAlignment(Qt::AlignRight);
versionLabel.setObjectName( "splashText" );
Spekular marked this conversation as resolved.
Show resolved Hide resolved

layout.addWidget(&loadingProgressLabel);
layout.addWidget(&versionLabel);
Expand Down