From ab15c96d53b1657665e9ab30621c477948f1ab92 Mon Sep 17 00:00:00 2001 From: mderezynski Date: Mon, 22 May 2006 08:43:23 +0000 Subject: [PATCH] * Don't forget to acquire the row from the model in toolbox.cpp:cell_data_func() --- src/widgets/toolbox.cpp | 2 ++ 1 file changed, 2 insertions(+) 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); -- 2.30.2