profile-editor: properly initialize the first palette color
taken from: https://git.gnome.org/browse/gnome-terminal/commit/?id=6447aded26416e49bf5fdce8a8fd13c16c0ebb44master-1.22
parent
7ab5af88f1
commit
30ce4834e8
|
@ -461,18 +461,13 @@ profile_palette_notify_colorpickers_cb (TerminalProfile *profile,
|
||||||
for (i = 0; i < n_colors; i++)
|
for (i = 0; i < n_colors; i++)
|
||||||
{
|
{
|
||||||
char name[32];
|
char name[32];
|
||||||
GdkRGBA old_color;
|
|
||||||
|
|
||||||
g_snprintf (name, sizeof (name), "palette-colorpicker-%d", i + 1);
|
g_snprintf (name, sizeof (name), "palette-colorpicker-%d", i + 1);
|
||||||
w = profile_editor_get_widget (editor, name);
|
w = profile_editor_get_widget (editor, name);
|
||||||
|
|
||||||
gtk_color_chooser_get_rgba (GTK_COLOR_CHOOSER (w), &old_color);
|
g_signal_handlers_block_by_func (w, G_CALLBACK (palette_color_notify_cb), profile);
|
||||||
if (!gdk_rgba_equal (&old_color, &colors[i]))
|
gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (w), &colors[i]);
|
||||||
{
|
g_signal_handlers_unblock_by_func (w, G_CALLBACK (palette_color_notify_cb), profile);
|
||||||
g_signal_handlers_block_by_func (w, G_CALLBACK (palette_color_notify_cb), profile);
|
|
||||||
gtk_color_chooser_set_rgba (GTK_COLOR_CHOOSER (w), &colors[i]);
|
|
||||||
g_signal_handlers_unblock_by_func (w, G_CALLBACK (palette_color_notify_cb), profile);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue