fix syntax error in exported LaTeX code

This commit is contained in:
Mario Hüttel 2018-05-31 00:08:02 +02:00
parent 58c7f571f4
commit 8455491c11
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ static gboolean write_layer_env(FILE *tex_file, GdkRGBA *color, int layer, GList
color->red = inf->color.red;
color->green = inf->color.green;
color->blue = inf->color.blue;
g_string_printf(buffer, "\\begin{pgfonlayer}{l%d}\n\\begin{scope}[ocg={ref=%d, status=visible,name={%s}]\n",
g_string_printf(buffer, "\\begin{pgfonlayer}{l%d}\n\\begin{scope}[ocg={ref=%d, status=visible,name={%s}}]\n",
layer, layer, inf->name);
WRITEOUT_BUFFER(buffer);
return TRUE;