From 42c9a619fd59f02f0a1bfbae2802d3c016251790 Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Sun, 5 Feb 2017 16:14:02 -0500 Subject: [PATCH] fix #240: [ggee/image] [open $1( not working --- externals/ggee/gui/image.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/externals/ggee/gui/image.c b/externals/ggee/gui/image.c index 9dc5b5464..8f0e14c87 100644 --- a/externals/ggee/gui/image.c +++ b/externals/ggee/gui/image.c @@ -385,7 +385,8 @@ static void image_open(t_image* x, t_symbol *s, t_int argc, t_atom *argv) x->x_fname = get_filename(argc, argv); x->x_img_width = 0; x->x_img_height = 0; - image_trytoopen(x); + image_vis((t_gobj *)x, x->x_glist, 0); + image_vis((t_gobj *)x, x->x_glist, 1); } static void image_imagesize_callback(t_image *x, t_float w, t_float h) { -- GitLab