summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAl <gabriel.cortesi@outlook.com>2018-03-18 10:06:04 +0100
committerGitHub <noreply@github.com>2018-03-18 10:06:04 +0100
commitb71d472e08701821a31c7ad48dcad04fe97b2d53 (patch)
tree98158c9d539c30256eadc076c755a47d84329e12 /src/mainwindow.cpp
parenta4b0524c70f719849a6d99096138b096e0339e30 (diff)
parentbbce6506cdf15b5965e12ca2b10063fa8d3b85c0 (diff)
Merge pull request #276 from Al12rs/Develop
Disabled iniTweaks, added resources, a few ui fixes and text changes.
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 5be5cef3..2bf25b05 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -3079,6 +3079,10 @@ void MainWindow::exportModListCSV()
QGridLayout *grid = new QGridLayout;
selection.setWindowTitle(tr("Export to csv"));
+ QLabel *csvDescription = new QLabel();
+ csvDescription->setText(tr("CSV (Comma Separated Values) is a format that can be imported in programs like Excel to create a spreadsheet.\nYou can also use online editors and converters instead."));
+ grid->addWidget(csvDescription);
+
QGroupBox *groupBoxRows = new QGroupBox(tr("Select what mods you want export:"));
QRadioButton *all = new QRadioButton(tr("All installed mods"));
QRadioButton *active = new QRadioButton(tr("Only active (checked) mods from your current profile"));