Skip to content

Commit 51faf25

Browse files
committed
cosmetic improvements to about dialog
1 parent 422693b commit 51faf25

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

larray_editor/editor.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -721,10 +721,12 @@ def about(self):
721721
kwargs = get_versions()
722722
kwargs.update(urls)
723723
message = """\
724-
<b>LArray Editor {editor}</b>: The Graphical User Interface for LArray.
725-
<br>Licensed under the terms of the <a href="{GPL3}">GNU GENERAL PUBLIC LICENSE Version 3</a>.
726-
<p>Developed and maintained by the <a href="{fpb}">Federal Planning Bureau</a> (Belgium).
727-
<p><b>Versions of underlying libraries</b>:
724+
<p><b>LArray Editor</b> {editor}
725+
<br>The Graphical User Interface for LArray
726+
<p>Licensed under the terms of the <a href="{GPL3}">GNU General Public License Version 3</a>.
727+
<p>Developed and maintained by the <a href="{fpb}">Federal Planning Bureau</a> (Belgium).
728+
<p>&nbsp;
729+
<p><b>Versions of underlying libraries</b>
728730
<ul>
729731
<li>Python {python} on {system} {bitness:d}bits</li>
730732
<li>Qt {qt}, {qt_api} {qt_api_ver}</li>
@@ -733,7 +735,7 @@ def about(self):
733735
if kwargs[dep] != 'N/A':
734736
message += "<li>{dep} {{{dep}}}</li>\n".format(dep=dep)
735737
message += "</ul>"
736-
QMessageBox.about(self, _("About Larray Editor"), message.format(**kwargs))
738+
QMessageBox.about(self, _("About LArray Editor"), message.format(**kwargs))
737739

738740
def set_current_file(self, filepath):
739741
self.update_recent_files([filepath])

0 commit comments

Comments
 (0)