Make palette changes use "best match" colours too.

[originally from svn r5695]
This commit is contained in:
Ben Harris 2005-04-27 20:30:47 +00:00
Родитель 62cdb81e0a
Коммит 7b72634c27
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1352,7 +1352,7 @@ static void real_palette_set(struct gui_data *inst, int n, int r, int g, int b)
gdk_colormap_free_colors(inst->colmap, inst->cols + n, 1);
gdk_colormap_alloc_colors(inst->colmap, inst->cols + n, 1,
FALSE, FALSE, success);
FALSE, TRUE, success);
if (!success[0])
g_error("%s: couldn't allocate colour %d (#%02x%02x%02x)\n", appname,
n, r, g, b);