aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/misc')
-rw-r--r--widgets/misc/e-colors.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/widgets/misc/e-colors.c b/widgets/misc/e-colors.c
index 4154b1bf3d..c7a79003ae 100644
--- a/widgets/misc/e-colors.c
+++ b/widgets/misc/e-colors.c
@@ -60,8 +60,14 @@ e_color_alloc_name (const char *name, GdkColor *c)
void
e_color_init (void)
{
- GdkColormap *colormap = gtk_widget_get_default_colormap ();
-
+ GdkColormap *colormap;
+
+ /* It's surprisingly easy to end up calling this twice. Survive. */
+ if (e_color_inited)
+ return;
+
+ colormap = gtk_widget_get_default_colormap ();
+
/* Initialize the color context */
e_color_context = gdk_color_context_new (
gtk_widget_get_default_visual (), colormap);