diff options
author | Jasmine Hassan <[email protected]> | 2012-11-22 02:15:01 +0200 |
---|---|---|
committer | Jasmine Hassan <[email protected]> | 2012-11-22 02:15:01 +0200 |
commit | b731a8377c5d09ae4b81e43ec5ee605dcbcfa84f (patch) | |
tree | 7ad428226e8695feba8383ea887a6ec1d921a998 | |
parent | 7abcfff070982c49c554749d28706f58c7fde948 (diff) | |
download | caja-b731a8377c5d09ae4b81e43ec5ee605dcbcfa84f.tar.bz2 caja-b731a8377c5d09ae4b81e43ec5ee605dcbcfa84f.tar.xz |
[eel-background] missed g_strdup in previous commit 3ba2c5e4
-rw-r--r-- | eel/eel-background.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eel/eel-background.c b/eel/eel-background.c index fba4f70d..ecfe3042 100644 --- a/eel/eel-background.c +++ b/eel/eel-background.c @@ -1142,7 +1142,7 @@ eel_background_receive_dropped_color (EelBackground *background, } else { - gradient_spec = background->details->color; + gradient_spec = g_strdup (background->details->color); } if (drop_location_x < left_border && drop_location_x <= right_border) |