mirror of https://github.com/GNOME/gimp.git
Fixed a typo in the palette-dialog.
Removed the systemwide palettes directory from the palettes searchpath. I still think we should overwork the gradients and palettes functions to distinct between files that can be changed and those that are not writeable. Probably for 1.1 ?? --Sven
This commit is contained in:
parent
b520a3b9f0
commit
e51a86b85d
|
@ -1,3 +1,9 @@
|
|||
Sun Apr 12 15:49:25 MEST 1998 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/palette.c: fixed a typo in the menu
|
||||
* gimprc.in: removed the systemwide palettes directory from the
|
||||
palettes searchpath
|
||||
|
||||
Sun Apr 12 02:23:05 PDT 1998 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* configure.in: I guess it didn't end... an attempt to try to
|
||||
|
|
|
@ -124,7 +124,7 @@ static MenuItem palette_ops[] =
|
|||
{
|
||||
{ "New Palette", 0, 0, palette_new_entries_callback, NULL, NULL, NULL },
|
||||
{ "Delete Palette", 0, 0, palette_delete_entries_callback, NULL, NULL, NULL },
|
||||
{ "Refresh Pallettes", 0, 0, palette_refresh_callback, NULL, NULL, NULL },
|
||||
{ "Refresh Palettes", 0, 0, palette_refresh_callback, NULL, NULL, NULL },
|
||||
{ "Close", 0, 0, palette_close_callback, NULL, NULL, NULL },
|
||||
{ NULL, 0, 0, NULL, NULL, NULL, NULL },
|
||||
};
|
||||
|
|
|
@ -124,7 +124,7 @@ static MenuItem palette_ops[] =
|
|||
{
|
||||
{ "New Palette", 0, 0, palette_new_entries_callback, NULL, NULL, NULL },
|
||||
{ "Delete Palette", 0, 0, palette_delete_entries_callback, NULL, NULL, NULL },
|
||||
{ "Refresh Pallettes", 0, 0, palette_refresh_callback, NULL, NULL, NULL },
|
||||
{ "Refresh Palettes", 0, 0, palette_refresh_callback, NULL, NULL, NULL },
|
||||
{ "Close", 0, 0, palette_close_callback, NULL, NULL, NULL },
|
||||
{ NULL, 0, 0, NULL, NULL, NULL, NULL },
|
||||
};
|
||||
|
|
|
@ -124,7 +124,7 @@ static MenuItem palette_ops[] =
|
|||
{
|
||||
{ "New Palette", 0, 0, palette_new_entries_callback, NULL, NULL, NULL },
|
||||
{ "Delete Palette", 0, 0, palette_delete_entries_callback, NULL, NULL, NULL },
|
||||
{ "Refresh Pallettes", 0, 0, palette_refresh_callback, NULL, NULL, NULL },
|
||||
{ "Refresh Palettes", 0, 0, palette_refresh_callback, NULL, NULL, NULL },
|
||||
{ "Close", 0, 0, palette_close_callback, NULL, NULL, NULL },
|
||||
{ NULL, 0, 0, NULL, NULL, NULL, NULL },
|
||||
};
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
|
||||
# Set the palette search path...this path will be searched for valid
|
||||
# palettes at startup.
|
||||
(palette-path "${gimp_dir}/palettes:${gimp_data_dir}/palettes")
|
||||
(palette-path "${gimp_dir}/palettes")
|
||||
|
||||
# Specify a default palette.
|
||||
# The pattern is searched for in the specified pattern paths.
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
|
||||
# Set the palette search path...this path will be searched for valid
|
||||
# palettes at startup.
|
||||
(palette-path "${gimp_dir}/palettes:${gimp_data_dir}/palettes")
|
||||
(palette-path "${gimp_dir}/palettes")
|
||||
|
||||
# Specify a default palette.
|
||||
# The pattern is searched for in the specified pattern paths.
|
||||
|
|
Loading…
Reference in New Issue