removed code that syncs the padding color with the default values set in
2007-10-27 Sven Neumann <sven@gimp.org> * app/display/gimpdisplayshell-handlers.c: removed code that syncs the padding color with the default values set in the preferences. Fixes bug #490785. svn path=/trunk/; revision=23974
This commit is contained in:

committed by
Sven Neumann

parent
cc0ee911ee
commit
cca6a3f1bd
@ -1,3 +1,9 @@
|
|||||||
|
2007-10-27 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* app/display/gimpdisplayshell-handlers.c: removed code that syncs
|
||||||
|
the padding color with the default values set in the preferences.
|
||||||
|
Fixes bug #490785.
|
||||||
|
|
||||||
2007-10-27 Sven Neumann <sven@gimp.org>
|
2007-10-27 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* plug-ins/common/pnm.c (pnm_load_ascii): fixed handling of
|
* plug-ins/common/pnm.c (pnm_load_ascii): fixed handling of
|
||||||
|
@ -108,9 +108,6 @@ static void gimp_display_shell_nav_size_notify_handler (GObject *c
|
|||||||
static void gimp_display_shell_monitor_res_notify_handler (GObject *config,
|
static void gimp_display_shell_monitor_res_notify_handler (GObject *config,
|
||||||
GParamSpec *param_spec,
|
GParamSpec *param_spec,
|
||||||
GimpDisplayShell *shell);
|
GimpDisplayShell *shell);
|
||||||
static void gimp_display_shell_padding_notify_handler (GObject *config,
|
|
||||||
GParamSpec *param_spec,
|
|
||||||
GimpDisplayShell *shell);
|
|
||||||
static void gimp_display_shell_ants_speed_notify_handler (GObject *config,
|
static void gimp_display_shell_ants_speed_notify_handler (GObject *config,
|
||||||
GParamSpec *param_spec,
|
GParamSpec *param_spec,
|
||||||
GimpDisplayShell *shell);
|
GimpDisplayShell *shell);
|
||||||
@ -231,23 +228,6 @@ gimp_display_shell_connect (GimpDisplayShell *shell)
|
|||||||
G_CALLBACK (gimp_display_shell_monitor_res_notify_handler),
|
G_CALLBACK (gimp_display_shell_monitor_res_notify_handler),
|
||||||
shell);
|
shell);
|
||||||
|
|
||||||
g_signal_connect (display_config->default_view,
|
|
||||||
"notify::padding-mode",
|
|
||||||
G_CALLBACK (gimp_display_shell_padding_notify_handler),
|
|
||||||
shell);
|
|
||||||
g_signal_connect (display_config->default_view,
|
|
||||||
"notify::padding-color",
|
|
||||||
G_CALLBACK (gimp_display_shell_padding_notify_handler),
|
|
||||||
shell);
|
|
||||||
g_signal_connect (display_config->default_fullscreen_view,
|
|
||||||
"notify::padding-mode",
|
|
||||||
G_CALLBACK (gimp_display_shell_padding_notify_handler),
|
|
||||||
shell);
|
|
||||||
g_signal_connect (display_config->default_fullscreen_view,
|
|
||||||
"notify::padding-color",
|
|
||||||
G_CALLBACK (gimp_display_shell_padding_notify_handler),
|
|
||||||
shell);
|
|
||||||
|
|
||||||
g_signal_connect (image->gimp->config,
|
g_signal_connect (image->gimp->config,
|
||||||
"notify::marching-ants-speed",
|
"notify::marching-ants-speed",
|
||||||
G_CALLBACK (gimp_display_shell_ants_speed_notify_handler),
|
G_CALLBACK (gimp_display_shell_ants_speed_notify_handler),
|
||||||
@ -300,12 +280,6 @@ gimp_display_shell_disconnect (GimpDisplayShell *shell)
|
|||||||
g_signal_handlers_disconnect_by_func (image->gimp->config,
|
g_signal_handlers_disconnect_by_func (image->gimp->config,
|
||||||
gimp_display_shell_ants_speed_notify_handler,
|
gimp_display_shell_ants_speed_notify_handler,
|
||||||
shell);
|
shell);
|
||||||
g_signal_handlers_disconnect_by_func (display_config->default_fullscreen_view,
|
|
||||||
gimp_display_shell_padding_notify_handler,
|
|
||||||
shell);
|
|
||||||
g_signal_handlers_disconnect_by_func (display_config->default_view,
|
|
||||||
gimp_display_shell_padding_notify_handler,
|
|
||||||
shell);
|
|
||||||
g_signal_handlers_disconnect_by_func (image->gimp->config,
|
g_signal_handlers_disconnect_by_func (image->gimp->config,
|
||||||
gimp_display_shell_monitor_res_notify_handler,
|
gimp_display_shell_monitor_res_notify_handler,
|
||||||
shell);
|
shell);
|
||||||
@ -625,55 +599,6 @@ gimp_display_shell_monitor_res_notify_handler (GObject *config,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
gimp_display_shell_padding_notify_handler (GObject *config,
|
|
||||||
GParamSpec *param_spec,
|
|
||||||
GimpDisplayShell *shell)
|
|
||||||
{
|
|
||||||
GimpDisplayConfig *display_config;
|
|
||||||
gboolean fullscreen;
|
|
||||||
GimpCanvasPaddingMode padding_mode;
|
|
||||||
GimpRGB padding_color;
|
|
||||||
|
|
||||||
display_config = GIMP_DISPLAY_CONFIG (shell->display->image->gimp->config);
|
|
||||||
|
|
||||||
fullscreen = gimp_display_shell_get_fullscreen (shell);
|
|
||||||
|
|
||||||
/* if the user did not set the padding mode for this display explicitely */
|
|
||||||
if (! shell->fullscreen_options->padding_mode_set)
|
|
||||||
{
|
|
||||||
padding_mode = display_config->default_fullscreen_view->padding_mode;
|
|
||||||
padding_color = display_config->default_fullscreen_view->padding_color;
|
|
||||||
|
|
||||||
if (fullscreen)
|
|
||||||
{
|
|
||||||
gimp_display_shell_set_padding (shell, padding_mode, &padding_color);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
shell->fullscreen_options->padding_mode = padding_mode;
|
|
||||||
shell->fullscreen_options->padding_color = padding_color;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* if the user did not set the padding mode for this display explicitely */
|
|
||||||
if (! shell->options->padding_mode_set)
|
|
||||||
{
|
|
||||||
padding_mode = display_config->default_view->padding_mode;
|
|
||||||
padding_color = display_config->default_view->padding_color;
|
|
||||||
|
|
||||||
if (fullscreen)
|
|
||||||
{
|
|
||||||
shell->options->padding_mode = padding_mode;
|
|
||||||
shell->options->padding_color = padding_color;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
gimp_display_shell_set_padding (shell, padding_mode, &padding_color);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gimp_display_shell_ants_speed_notify_handler (GObject *config,
|
gimp_display_shell_ants_speed_notify_handler (GObject *config,
|
||||||
GParamSpec *param_spec,
|
GParamSpec *param_spec,
|
||||||
|
Reference in New Issue
Block a user