Skip to content

Commit e6bad6a

Browse files
committed
Added script to app.pro file to build the test project before building the app. Fixed missing tab in optionsdialog.
1 parent 354a23f commit e6bad6a

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/app/app.pro

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ QT += core gui widgets printsupport
66

77
greaterThan(QT_MAJOR_VERSION, 5): QT += widgets
88

9+
QMAKE_POST_LINK += "&& cd ../test && $(MAKE) && ./$$TARGET"
10+
911
TARGET = MieSimulatorGUI_v2_0
1012
CONFIG -= -qt-freetype
1113
TEMPLATE = app

src/app/dialog/optionsdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ void OptionsDialog::SavePhaseFunction(QRadioButton *radioButton_PhaseAverage,
247247
out << "(Para): ";
248248
if (radioButton_PhasePerp->isChecked())
249249
out << "(Perp): ";
250-
out << "\n\tWL(nm)-->\nAngle(deg)";
250+
out << "\n\tWL(nm)-->\nAngle(deg)\t";
251251
for (unsigned int i=0; i<para->nWavel; i++)
252252
out << para->wavelArray[i] <<"\t";
253253
out << "\n";

0 commit comments

Comments
 (0)