summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAl12rs <gabriel.cortesi@outlook.com>2018-03-16 18:02:57 +0100
committerAl12rs <gabriel.cortesi@outlook.com>2018-03-16 18:02:57 +0100
commit2fa1b04cd430315f3abf45dcdd4975c0117ac98a (patch)
tree67e5af5cc97a499fb4088d9f1b5eb7571ba72138 /src/mainwindow.cpp
parent8dee1d108b4098a587f3a827c187b3c9c2559d12 (diff)
Various text and ui changes:
Added description to CSV export. Added line to delete instance error message. Changed delete instance icon for the list of instances. Added red X in the resources, thanks to twizz0r.
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"));