From 61b44b9345d28e7a208a15156a9905d80b4dc5fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sun, 21 Jan 2007 21:02:45 +0000 Subject: [PATCH] Fixed a bug introduced by DarkWyrm: he obviously missed that there are two locations where you have to set the default value of a setting. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19896 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/tracker/SettingsViews.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kits/tracker/SettingsViews.cpp b/src/kits/tracker/SettingsViews.cpp index 912715c63b..2603547a0b 100644 --- a/src/kits/tracker/SettingsViews.cpp +++ b/src/kits/tracker/SettingsViews.cpp @@ -599,9 +599,9 @@ WindowsSettingsView::SetDefaults() } if (settings.SortFolderNamesFirst()) { - settings.SetSortFolderNamesFirst(false); + settings.SetSortFolderNamesFirst(true); send_bool_notices(kSortFolderNamesFirstChanged, - "SortFolderNamesFirst", false); + "SortFolderNamesFirst", true); } ShowCurrentSettings();