Skip to content

Commit 41cf0ea

Browse files
committed
cosmetic improvements to about dialog
1 parent 6a32228 commit 41cf0ea

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
@@ -730,18 +730,20 @@ def about(self):
730730
kwargs = get_versions('editor')
731731
kwargs.update(urls)
732732
message = """\
733-
<b>LArray Editor {editor}</b>: The Graphical User Interface for LArray.
734-
<br>Licensed under the terms of the <a href="{GPL3}">GNU GENERAL PUBLIC LICENSE Version 3</a>.
735-
<p>Developed and maintained by the <a href="{fpb}">Federal Planning Bureau</a> (Belgium).
736-
<p><b>Versions of underlying libraries</b>:
733+
<p><b>LArray Editor</b> {editor}
734+
<br>The Graphical User Interface for LArray
735+
<p>Licensed under the terms of the <a href="{GPL3}">GNU General Public License Version 3</a>.
736+
<p>Developed and maintained by the <a href="{fpb}">Federal Planning Bureau</a> (Belgium).
737+
<p>&nbsp;
738+
<p><b>Versions of underlying libraries</b>
737739
<ul>
738740
<li>Python {python} on {system} {bitness:d}bits</li>
739741
"""
740742
for dep in dependencies['editor']:
741743
if kwargs[dep] != 'N/A':
742744
message += "<li>{dep} {{{dep}}}</li>\n".format(dep=dep)
743745
message += "</ul>"
744-
QMessageBox.about(self, _("About Larray Editor"), message.format(**kwargs))
746+
QMessageBox.about(self, _("About LArray Editor"), message.format(**kwargs))
745747

746748
def set_current_file(self, filepath):
747749
self.update_recent_files([filepath])

0 commit comments

Comments
 (0)