From a70e7249efd23ea857c3c4e0fc5324005de65114 Mon Sep 17 00:00:00 2001 From: un1versal Date: Sun, 4 Oct 2015 04:46:37 +0100 Subject: [Theme save options] Save icons with themes off by default and add description text. Even shorter text --- src/modules/theme/SaveThemeDialog.cpp | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/modules/theme/SaveThemeDialog.cpp b/src/modules/theme/SaveThemeDialog.cpp index 6e0ea5d56..4b4af497c 100644 --- a/src/modules/theme/SaveThemeDialog.cpp +++ b/src/modules/theme/SaveThemeDialog.cpp @@ -152,13 +152,23 @@ SaveThemeDialog::SaveThemeDialog(QWidget * pParent) pPage = new QWidget(this); pLayout = new QGridLayout(pPage); - m_pSaveIconsCheckBox = new QCheckBox(__tr2qs_ctx("Save icons","theme"),this); + m_pSaveIconsCheckBox = new QCheckBox(__tr2qs_ctx("Save icons and images with theme","theme"),this); m_pSaveIconsCheckBox->setChecked(true); - pLayout->addWidget(m_pSaveIconsCheckBox,0,0); - pLayout->setRowStretch(1,1); + pLabel = new QLabel(pPage); + pLabel->setWordWrap(true); + QString ozText = "

"; + ozText += __tr2qs_ctx("To use the default and latest icon/image set automatically, uncheck this option.

To replace specific icons/images in your theme, include only those you wish to replace.","theme"); + ozText += "

";; + ozText += __tr2qs_ctx("Hit the \"Next\" button to continue.","theme"); + ozText += "

"; + + pLayout->addWidget(m_pSaveIconsCheckBox,0,0); + pLabel->setText(ozText); + pLayout->addWidget(pLabel,1,0); + pLayout->setRowStretch(2,1); - addPage(pPage,__tr2qs_ctx("Options","theme")); + addPage(pPage,__tr2qs_ctx("Theme options","theme")); setBackEnabled(pPage,true); setNextEnabled(pPage,true); setHelpEnabled(pPage,false); -- cgit v1.3.1-10-gc9f91