Skip to content

Commit

Permalink
- added libsbml version info
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergmann committed Dec 4, 2013
1 parent e52ccdf commit 3469d60
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion SpatialUI/spatialmainwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,12 @@ bool SpatialMainWindow::saveAs()
void SpatialMainWindow::about()
{
QMessageBox::about(this, tr("About Spatial UI"),
tr("The <b>Spatial UI</b> application opens a file with the SBML spatial extension and allows to simulate it using Akira's simulator."));
tr(
"The <b>Spatial UI</b> application opens a file with the SBML spatial extension and allows to "
"simulate it using Akira's simulator.<br/><br/>"
"It uses <a href='http://sbml.org/Software/libSBML'>libSBML</a> Version: %1")
.arg(getLibSBMLDottedVersion())
);
}

void SpatialMainWindow::createActions()
Expand Down

0 comments on commit 3469d60

Please sign in to comment.