Skip to content

Commit

Permalink
Fixed review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
TSI-parulsharma committed Jul 5, 2023
1 parent 7be91a9 commit 841fe9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ void Application::addCustomStyleSheet()

QFile file(QStringLiteral(":/qss/theme/Style/style.qss"));
if (file.open(QFile::ReadOnly)) {
QString styleSheet = QLatin1String(file.readAll());
const auto &styleSheet = QString::fromLatin1(file.readAll());
setStyleSheet(styleSheet.arg(background, dark, highlightColor, highlightTextColor));
}
}
Expand Down

0 comments on commit 841fe9b

Please sign in to comment.