From: mderezynski Date: Mon, 22 May 2006 08:43:23 +0000 (+0000) Subject: * Don't forget to acquire the row from the model in toolbox.cpp:cell_data_func() X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ab15c96d53b1657665e9ab30621c477948f1ab92;p=inkscape.git * Don't forget to acquire the row from the model in toolbox.cpp:cell_data_func() --- diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp index 80486120a..98ea859a8 100644 --- a/src/widgets/toolbox.cpp +++ b/src/widgets/toolbox.cpp @@ -3259,6 +3259,8 @@ namespace { *sample_escaped; const char *sample; + gtk_tree_model_get (tree_model, iter, 0, &family, -1); + sample = prefs_get_string_attribute ("tools.text", "font_sample"); family_escaped = g_markup_escape_text (family, -1);