app: add "cairo-ARGB32" to "R'G'B'A u8" in gimp_babl_init_fishes().

This fish is used for text layers, so if we let it to be
lazy-initialized, the first time one writes text in a text layer, it
generates a few seconds delay, which is really not great.
This commit is contained in:
Jehan 2018-08-01 16:42:39 +02:00
parent 79a5c304d2
commit a03e52ea08
1 changed files with 2 additions and 1 deletions

View File

@ -157,7 +157,8 @@ gimp_babl_init_fishes (GimpInitStatusFunc status_callback)
{ "RaGaBaA float", "R'G'B'A float" },
{ "RaGaBaA float", "RGBA float" },
{ "RGBA float", "RaGaBaA float" },
{ "R'G'B' u8", "RaGaBaA float" }
{ "R'G'B' u8", "RaGaBaA float" },
{ "cairo-ARGB32", "R'G'B'A u8" }
};
gint i;