Some minor changes to the about dialog
This commit is contained in:
+3
-3
@@ -110,7 +110,7 @@ class GuiMainMenu(QMenuBar):
|
||||
"<h3>About {name:s}</h3>"
|
||||
"<p>Version: {version:s}<br>Release Date: {date:s}</p>"
|
||||
"<p>{name:s} is a markdown-like text editor designed for organising and writing novels. "
|
||||
"It is written in Python 3 with a Qt5 GUI. The Python and Qt layers are connected with PyQt5</p>"
|
||||
"It is written in Python 3 with a Qt5 GUI, using PyQt5</p>"
|
||||
"<p>{name:s} is licensed under GPL v3.0</p>"
|
||||
"<p>{copyright:s}</p>"
|
||||
"<p>Website: <a href='{website:s}'>{website:s}</a></p>"
|
||||
@@ -129,11 +129,11 @@ class GuiMainMenu(QMenuBar):
|
||||
aboutMsg += "<h4>GUI Theme and Syntax Highlighting</h4>"
|
||||
aboutMsg += "<p>"
|
||||
if theTheme.themeCredit != "":
|
||||
aboutMsg += "%s%s by %s<br/>" % (
|
||||
aboutMsg += "%s\"%s\" by %s<br/>" % (
|
||||
listPrefix, theTheme.themeName, theTheme.themeCredit
|
||||
)
|
||||
if theTheme.syntaxCredit != "":
|
||||
aboutMsg += "%s%s by %s<br/>" % (
|
||||
aboutMsg += "%s\"%s\" by %s<br/>" % (
|
||||
listPrefix, theTheme.syntaxName, theTheme.syntaxCredit
|
||||
)
|
||||
aboutMsg += "</p>"
|
||||
|
||||
Reference in New Issue
Block a user