[gimp] app: simplify leftover and now useless nested if()
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] app: simplify leftover and now useless nested if()
- Date: Wed, 2 May 2012 16:32:22 +0000 (UTC)
commit cb3e8f82d4d252986852be5a39974baa9742a424
Author: Michael Natterer <mitch gimp org>
Date: Thu Apr 5 20:37:47 2012 +0200
app: simplify leftover and now useless nested if()
app/core/gimp-edit.c | 17 ++++++++---------
1 files changed, 8 insertions(+), 9 deletions(-)
---
diff --git a/app/core/gimp-edit.c b/app/core/gimp-edit.c
index 49863e8..3dbff1e 100644
--- a/app/core/gimp-edit.c
+++ b/app/core/gimp-edit.c
@@ -465,19 +465,18 @@ gimp_edit_fill_full (GimpImage *image,
g_return_val_if_fail (gimp_item_is_attached (GIMP_ITEM (drawable)), FALSE);
g_return_val_if_fail (color != NULL || pattern != NULL, FALSE);
-
if (! gimp_item_mask_intersect (GIMP_ITEM (drawable), &x, &y, &width, &height))
return TRUE; /* nothing to do, but the fill succeded */
- format = gimp_drawable_get_format (drawable);
-
- if (pattern)
+ if (pattern &&
+ (pattern->mask->bytes == 2 || pattern->mask->bytes == 4) &&
+ ! gimp_drawable_has_alpha (drawable))
{
- if (! gimp_drawable_has_alpha (drawable) &&
- (pattern->mask->bytes == 2 || pattern->mask->bytes == 4))
- {
- format = gimp_drawable_get_format_with_alpha (drawable);
- }
+ format = gimp_drawable_get_format_with_alpha (drawable);
+ }
+ else
+ {
+ format = gimp_drawable_get_format (drawable);
}
dest_buffer = gimp_gegl_buffer_new (GEGL_RECTANGLE (0, 0, width, height),
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]