libgimp: in GimpTileBackendPlugin, use gegl_tile_backend_command()

In the command handler of GimpTileBackendPlugin, forward unhandled
commands to gegl_tile_backend_command(), instead of asserting that
they're within range (which has already been disabled by commit
bc3b076caf).  See GEGL commit
30047e65723ebb44fcde9c6b5f60ceecb43b0895.
This commit is contained in:
Ell 2018-08-19 19:43:10 -04:00
parent 17e37ddf24
commit 668fee966a
1 changed files with 2 additions and 1 deletions

View File

@ -161,7 +161,8 @@ gimp_tile_backend_plugin_command (GeglTileSource *tile_store,
break;
default:
/* g_assert (command < GEGL_TILE_LAST_COMMAND && command >= 0); */
result = gegl_tile_backend_command (GEGL_TILE_BACKEND (tile_store),
command, x, y, z, data);
break;
}