diff options
| author | Shaun Reich <[email protected]> | 2009-02-02 14:44:25 +0000 |
|---|---|---|
| committer | Shaun Reich <[email protected]> | 2009-02-02 14:44:25 +0000 |
| commit | 952fc86039e9b3ba9b0ba5342e0fcfa30647268a (patch) | |
| tree | 19a560d0be8d4571d31dbbeeb9ff152b6a2ff58a /src/settings | |
| parent | bacc9c913779b4d2c50c480d83646f7226cc96ef (diff) | |
Confirmations of the following settings now reset themselves to their defaults:
*Move to Trash
*Delete
These are located in the General page->Context Menu tab of the settings dialog.
svn path=/trunk/KDE/kdebase/apps/; revision=920205
Diffstat (limited to 'src/settings')
| -rw-r--r-- | src/settings/behaviorsettingspage.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/settings/behaviorsettingspage.cpp b/src/settings/behaviorsettingspage.cpp index 329ec586c..f128613fc 100644 --- a/src/settings/behaviorsettingspage.cpp +++ b/src/settings/behaviorsettingspage.cpp @@ -133,10 +133,11 @@ void BehaviorSettingsPage::applySettings() void BehaviorSettingsPage::restoreDefaults() { GeneralSettings* settings = DolphinSettings::instance().generalSettings(); - //TODO: Reset default settings for both trash and show delete commands (confirmations). settings->useDefaults(true); loadSettings(); settings->useDefaults(false); + m_confirmMoveToTrash->setChecked(false); + m_confirmDelete->setChecked(true); } void BehaviorSettingsPage::loadSettings() |
