app_server was not storing its settings when the workspace count was changed.

As a consequence this setting was lost unless another setting was also altered
that affected the workspace configuration in some way.
Fixes #2849.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28206 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rene Gollent 2008-10-17 01:56:44 +00:00
parent 3d7584da5c
commit 4a4355bd7d
1 changed files with 1 additions and 0 deletions

View File

@ -508,6 +508,7 @@ DesktopSettingsPrivate::SetWorkspacesCount(int32 number)
number = kMaxWorkspaces;
fWorkspacesCount = number;
Save(kWorkspacesSettings);
}