added a call to gimp_tool_options_create_folder().

2008-05-22  Sven Neumann  <sven@gimp.org>

	* app/tools/gimp-tools.c (gimp_tools_init): added a call to
	gimp_tool_options_create_folder().

	* app/core/gimp-user-install.c (gimp_user_install_items): no need
	to create the tool-options folder here if we are doing that on
	each startup.

svn path=/trunk/; revision=25749
This commit is contained in:
Sven Neumann 2008-05-22 09:01:08 +00:00 committed by Sven Neumann
parent e161a6148c
commit 0d6c259be3
3 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,12 @@
2008-05-22 Sven Neumann <sven@gimp.org>
* app/tools/gimp-tools.c (gimp_tools_init): added a call to
gimp_tool_options_create_folder().
* app/core/gimp-user-install.c (gimp_user_install_items): no need
to create the tool-options folder here if we are doing that on
each startup.
2008-05-22 Sven Neumann <sven@gimp.org>
* app/tools/gimpcurvestool.c (gimp_curves_tool_dialog): use a

View File

@ -94,7 +94,6 @@ gimp_user_install_items[] =
{ "templates", USER_INSTALL_MKDIR },
{ "themes", USER_INSTALL_MKDIR },
{ "tmp", USER_INSTALL_MKDIR },
{ "tool-options", USER_INSTALL_MKDIR },
{ "curves", USER_INSTALL_MKDIR },
{ "levels", USER_INSTALL_MKDIR },
{ "fractalexplorer", USER_INSTALL_MKDIR },

View File

@ -184,6 +184,8 @@ gimp_tools_init (Gimp *gimp)
g_return_if_fail (GIMP_IS_GIMP (gimp));
gimp_tool_options_create_folder ();
tool_manager_init (gimp);
gimp_container_freeze (gimp->tool_info_list);