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
This commit is contained in:
Axel Dörfler
2007-01-21 21:02:45 +00:00
parent 2395270daa
commit 61b44b9345
+2 -2
View File
@@ -599,9 +599,9 @@ WindowsSettingsView::SetDefaults()
}
if (settings.SortFolderNamesFirst()) {
settings.SetSortFolderNamesFirst(false);
settings.SetSortFolderNamesFirst(true);
send_bool_notices(kSortFolderNamesFirstChanged,
"SortFolderNamesFirst", false);
"SortFolderNamesFirst", true);
}
ShowCurrentSettings();