1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-01-31 17:15:14 +01:00

A little bit more sane PDF resolutions

This commit is contained in:
Martin Tůma 2018-04-27 19:37:15 +02:00
parent 566f3185f9
commit 2fb9a59bf0

View File

@ -42,9 +42,9 @@ ExportDialog::ExportDialog(Export *exp, QWidget *parent)
_paperSize->setCurrentIndex(index); _paperSize->setCurrentIndex(index);
_resolution = new QComboBox(); _resolution = new QComboBox();
_resolution->addItem("150 DPI", 150);
_resolution->addItem("300 DPI", 300); _resolution->addItem("300 DPI", 300);
_resolution->addItem("600 DPI", 600); _resolution->addItem("600 DPI", 600);
_resolution->addItem("1200 DPI", 1200);
if ((index = _resolution->findData(_export->resolution)) >= 0) if ((index = _resolution->findData(_export->resolution)) >= 0)
_resolution->setCurrentIndex(index); _resolution->setCurrentIndex(index);