mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
adjust size hints of group boxes
svn path=/trunk/KDE/kdebase/apps/; revision=932509
This commit is contained in:
parent
fd6be5b9af
commit
ec8a75b90c
2 changed files with 3 additions and 0 deletions
|
@ -57,6 +57,7 @@ BehaviorSettingsPage::BehaviorSettingsPage(const KUrl& url, QWidget* parent) :
|
|||
|
||||
// 'View Properties' box
|
||||
QGroupBox* propsBox = new QGroupBox(i18nc("@title:group", "View Properties"), vBox);
|
||||
propsBox->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum);
|
||||
|
||||
m_localProps = new QRadioButton(i18nc("@option:radio", "Remember view properties for each folder"), propsBox);
|
||||
connect(m_localProps, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
|
||||
|
@ -70,6 +71,7 @@ BehaviorSettingsPage::BehaviorSettingsPage(const KUrl& url, QWidget* parent) :
|
|||
|
||||
// 'Ask Confirmation For' box
|
||||
QGroupBox* confirmBox = new QGroupBox(i18nc("@title:group", "Ask For Confirmation When"), vBox);
|
||||
confirmBox->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum);
|
||||
m_confirmMoveToTrash = new QCheckBox(i18nc("@option:check Ask for Confirmation When",
|
||||
"Moving files or folders to trash"), confirmBox);
|
||||
connect(m_confirmMoveToTrash, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
|
||||
|
|
|
@ -47,6 +47,7 @@ NavigationSettingsPage::NavigationSettingsPage(QWidget* parent) :
|
|||
|
||||
// create 'Mouse' group
|
||||
QGroupBox* mouseBox = new QGroupBox(i18nc("@title:group", "Mouse"), vBox);
|
||||
mouseBox->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum);
|
||||
m_singleClick = new QRadioButton(i18nc("@option:check Mouse Settings",
|
||||
"Single-click to open files and folders"), mouseBox);
|
||||
connect(m_singleClick, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
|
||||
|
|
Loading…
Reference in a new issue