https://bugs.kde.org/show_bug.cgi?id=463732
Martin Schnitkemper <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] | |e --- Comment #2 from Martin Schnitkemper <[email protected]> --- I'm not the expert, but the decision is made in core/printoptionswidget.cpp: | { | setWindowTitle(i18n("Print Options")); | QFormLayout *layout = new QFormLayout(this); | m_ignorePrintMargins = new QComboBox; | // value indicates whether full page is enabled (i.e. print margins ignored) | m_ignorePrintMargins->insertItem(0, i18n("Fit to printable area"), false); | m_ignorePrintMargins->insertItem(1, i18n("Fit to full page"), true); | layout->addRow(i18n("Scale mode:"), m_ignorePrintMargins); | } Then it should be possible to store the return value ("true" or "false") as a status in ~/.config/okularrc and when opening the dialog again, read the value and set it as default. -- You are receiving this mail because: You are watching all bug changes.
