app: update tiling stroke coordinates when intervals change.

This commit is contained in:
Jehan 2016-02-07 15:17:20 +01:00
parent 65c6886544
commit a49e6d015a
1 changed files with 2 additions and 2 deletions

View File

@ -215,7 +215,7 @@ gimp_tiling_set_property (GObject *object,
g_value_set_double (&val, 0.0);
g_object_set_property (G_OBJECT (object), "shift", &val);
}
else if (sym->drawable)
if (sym->drawable)
gimp_tiling_update_strokes (sym, sym->drawable, sym->origin);
}
}
@ -236,7 +236,7 @@ gimp_tiling_set_property (GObject *object,
g_value_set_double (&val, 0.0);
g_object_set_property (G_OBJECT (object), "shift", &val);
}
else if (sym->drawable)
if (sym->drawable)
gimp_tiling_update_strokes (sym, sym->drawable, sym->origin);
}
}