diff options
| author | Al <gabriel.cortesi@outlook.com> | 2018-03-18 10:06:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-18 10:06:04 +0100 |
| commit | b71d472e08701821a31c7ad48dcad04fe97b2d53 (patch) | |
| tree | 98158c9d539c30256eadc076c755a47d84329e12 /src/mainwindow.cpp | |
| parent | a4b0524c70f719849a6d99096138b096e0339e30 (diff) | |
| parent | bbce6506cdf15b5965e12ca2b10063fa8d3b85c0 (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.cpp | 4 |
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"));
|
