Skip to content
Snippets Groups Projects
Commit 3ed20aa2 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

don't abbreviate "version"

parent f3f08830
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,6 @@
AboutApplicationDialog::AboutApplicationDialog(QWidget *parent)
: QDialog(parent)
{
QColor bgColor(240,240,240,255);
QPalette palette;
......@@ -56,7 +55,7 @@ AboutApplicationDialog::AboutApplicationDialog(QWidget *parent)
logoLabel->setPixmap(logo.scaled(120,120,Qt::KeepAspectRatio));
QLabel *aboutTitleLabel = new QLabel(QString("BornAgain").append(" ver. ")
QLabel *aboutTitleLabel = new QLabel(QString("BornAgain version ")
.append(GUIHelpers::getBornAgainVersionString()));
aboutTitleLabel->setFont(titleFont);
aboutTitleLabel->setContentsMargins(0,0,0,15);
......@@ -116,5 +115,3 @@ AboutApplicationDialog::AboutApplicationDialog(QWidget *parent)
setLayout(mainLayout);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment