Skip to content

Commit

Permalink
Merge pull request #113 from cristian64/aboud_dialog_copyleft_symbol
Browse files Browse the repository at this point in the history
Use copyright symbol in **About** dialog.
  • Loading branch information
dreamsyntax authored Mar 9, 2024
2 parents dc271b9 + b88fb01 commit 7b5f7c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/GUI/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -521,8 +521,8 @@ void MainWindow::onAbout()
text_label->setOpenExternalLinks(true);
text_label->setWordWrap(true);

QLabel* const copyright_label{new QLabel(QStringLiteral("<small>&#127279; 2017+ %1 Team</small>")
.arg(QApplication::applicationName()))};
QLabel* const copyright_label{new QLabel(
QStringLiteral("<small>\u00A9 2017+ %1 Team</small>").arg(QApplication::applicationName()))};
copyright_label->setAlignment(Qt::AlignCenter);
copyright_label->setContentsMargins(0, fontHeight * 2, 0, 0);

Expand Down

0 comments on commit 7b5f7c2

Please sign in to comment.