From: buliabyak Date: Wed, 24 May 2006 02:39:10 +0000 (+0000) Subject: slight cosmetics in text toolbar X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3b085b56bfee750111785fdfac5ed3356bac30c0;p=inkscape.git slight cosmetics in text toolbar --- diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp index 3d33a972d..c925b3a0c 100644 --- a/src/widgets/toolbox.cpp +++ b/src/widgets/toolbox.cpp @@ -3274,7 +3274,7 @@ namespace { sample_escaped = g_markup_escape_text (sample, -1); std::stringstream markup; - markup << family_escaped << " " << sample_escaped << ""; + markup << family_escaped << " " << sample_escaped << ""; g_object_set (G_OBJECT (cell), "markup", markup.str().c_str(), NULL); free (family); @@ -3298,7 +3298,7 @@ namespace { GtkEntryCompletion *completion = gtk_entry_completion_new (); gtk_entry_completion_set_model (completion, GTK_TREE_MODEL (Glib::unwrap(store))); gtk_entry_completion_set_text_column (completion, 0); - gtk_entry_completion_set_minimum_key_length (completion, 3); //3 characters minimum sounds reasonable + gtk_entry_completion_set_minimum_key_length (completion, 1); g_object_set (G_OBJECT(completion), "inline-completion", TRUE, "popup-completion", TRUE, NULL); gtk_entry_set_completion (GTK_ENTRY(entry), completion); aux_toolbox_space (tbl, 1);