Skip to content

Commit 53a3210

Browse files
committed
Use copyright symbol.
Previously, copyleft symbol 🄯 was used. However, the default font family on Windows does not support the character. The copyright symbol © is now used.
1 parent dc271b9 commit 53a3210

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/GUI/MainWindow.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -521,8 +521,8 @@ void MainWindow::onAbout()
521521
text_label->setOpenExternalLinks(true);
522522
text_label->setWordWrap(true);
523523

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

0 commit comments

Comments
 (0)