-
-
Notifications
You must be signed in to change notification settings - Fork 58
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
UI: About dialog #779
UI: About dialog #779
Conversation
You should add these few things:
|
Also, the innosetup must be edited to install this font. |
lbl->setBackColor(CColor(0x00, 0x00, 0x00, 0x00)); | ||
lbl->setHoriAlign(align); | ||
lbl->setText( | ||
"Version " + UTF8String(CMAKE_STR(SFIZZ_VERSION)) + "." + UTF8String(GitBuildId) + "\n" + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only concatenate the ".GitBuildId" part if the GitBuildId is non-empty, otherwise we get this superflous dot character
lbl->setBackColor(CColor(0x00, 0x00, 0x00, 0x00)); | ||
lbl->setHoriAlign(align); | ||
lbl->setText( | ||
"Maintainers: Paul Ferrand, Jean-Pierre Cimalando\n""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prefix these string parts with u8
for utf-8
No description provided.