Skip to content

Commit

Permalink
Update aboutwidget.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
rodlie committed Dec 29, 2024
1 parent acf0c27 commit c2c805f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/widgets/aboutwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ AboutWidget::AboutWidget(QWidget *parent)
AppSupport::getAppDisplayName(),
AppSupport::getAppID(),
QString::number(ThemeSupport::getIconSize(qRound(logoSize * devicePixelRatioF())).width()),
QApplication::platformName());
QApplication::platformName() == "xcb" ? "X11" : QApplication::platformName());
const auto buildInfo = AppSupport::getAppBuildInfo(true);
if (!buildInfo.isEmpty()) {
label.append(buildInfo);
Expand Down

0 comments on commit c2c805f

Please sign in to comment.