diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-04-20 12:48:09 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-04-20 12:48:09 +0900 |
commit | a57ae64c11314ae571bd529c78c2460daccc9004 (patch) | |
tree | 107e421d244d0d344028d2596fe27893659ab5f1 | |
parent | d2e09a4d2df750c01de4953706916b84a6b6f213 (diff) | |
download | tdelibs-a57ae64c11314ae571bd529c78c2460daccc9004.tar.gz tdelibs-a57ae64c11314ae571bd529c78c2460daccc9004.zip |
kjobviewer: fixed initial value of KeepWindow checkbox. This was causing KJobViewer to not autostart unless the user first toggled the checkbox at least once. Relates to bug 1362.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | tdeprint/management/kmjobviewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeprint/management/kmjobviewer.cpp b/tdeprint/management/kmjobviewer.cpp index 7e149ed48..43f027fe1 100644 --- a/tdeprint/management/kmjobviewer.cpp +++ b/tdeprint/management/kmjobviewer.cpp @@ -335,7 +335,7 @@ void KMJobViewer::initActions() TDEConfig *conf = KMFactory::self()->printConfig(); conf->setGroup("Jobs"); - m_stickybox->setChecked(conf->readBoolEntry("KeepWindow",true)); + m_stickybox->setChecked(conf->readBoolEntry("KeepWindow",false)); connect(m_stickybox, TQT_SIGNAL(toggled(bool)), TQT_SLOT(slotKeepWindowChange(bool))); statusbar->addWidget( m_stickybox, 1, false ); statusbar->insertItem(" " + i18n("Max.: %1").arg(i18n("Unlimited"))+ " ", 0, 0, true); |