Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Scientific Software
MDANSE
Commits
bf66beff
Commit
bf66beff
authored
Aug 26, 2016
by
eric pellegrini
Browse files
Modified the About dialog of changes made in __pkginfo__.py script
parent
96cf624e
Changes
1
Hide whitespace changes
Inline
Side-by-side
MDANSE/GUI/MainFrame.py
View file @
bf66beff
...
...
@@ -40,7 +40,7 @@ import wx
import
wx.aui
as
aui
from
MDANSE
import
DATA_CONTROLLER
,
LOGGER
,
PLATFORM
,
REGISTRY
from
MDANSE.__pkginfo__
import
__version__
,
__revision__
from
MDANSE.__pkginfo__
import
__version__
from
MDANSE.Framework.Jobs.Converters.Converter
import
Converter
from
MDANSE.GUI.ControllerPanel
import
ControllerPanel
from
MDANSE.GUI.DataTreePanel
import
DataTreePanel
...
...
@@ -228,14 +228,9 @@ class MainFrame(wx.Frame):
DATA_CONTROLLER
[
data
.
filename
]
=
data
def
on_about
(
self
,
event
=
None
):
if
__revision__
is
"undefined"
:
rev
=
""
else
:
rev
=
" (%s)"
%
__revision__
about_str
=
\
"""MDANSE version
%s
%s.
"""MDANSE version %s.
An interactive program for analyzing Molecular Dynamics simulations.
...
...
@@ -243,7 +238,7 @@ Authors:
\t
Eric C. Pellegrini
\t
Gael Goret
\t
Bachir Aoun
"""
%
(
__version__
,
rev
)
"""
%
(
__version__
,)
d
=
wx
.
MessageDialog
(
self
,
about_str
,
'About'
,
style
=
wx
.
OK
|
wx
.
ICON_INFORMATION
)
d
.
ShowModal
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment