mirror of https://github.com/GNOME/gimp.git
app: some cleanup in gimp_template_notify()
- use gimp_babl_mask_format() to get the new image's selection format - don't call g_object_notify("icon-name"), GimpViewable does that already
This commit is contained in:
parent
b6052dc568
commit
28e4ae341b
|
@ -332,9 +332,7 @@ gimp_template_notify (GObject *object,
|
|||
bytes = babl_format_get_bytes_per_pixel (format);
|
||||
|
||||
/* the selection */
|
||||
format = gimp_babl_format (GIMP_GRAY,
|
||||
private->precision,
|
||||
FALSE);
|
||||
format = gimp_babl_mask_format (private->precision);
|
||||
bytes += babl_format_get_bytes_per_pixel (format);
|
||||
|
||||
private->initial_size = ((guint64) bytes *
|
||||
|
@ -345,9 +343,6 @@ gimp_template_notify (GObject *object,
|
|||
gimp_projection_estimate_memsize (private->base_type,
|
||||
gimp_babl_component_type (private->precision),
|
||||
private->width, private->height);
|
||||
|
||||
if (! strcmp (pspec->name, "icon-name"))
|
||||
gimp_viewable_invalidate_preview (GIMP_VIEWABLE (object));
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue