summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2006-05-24 02:39:10 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2006-05-24 02:39:10 +0000
commit00d2776542570078f0ac683489b1ea6a9bbccb40 (patch)
treef9f31d1a9057feeda66c2e52db3f1473a6eea195 /src
parentAdd gui code for registration (diff)
downloadinkscape-00d2776542570078f0ac683489b1ea6a9bbccb40.tar.gz
inkscape-00d2776542570078f0ac683489b1ea6a9bbccb40.zip
slight cosmetics in text toolbar
(bzr r992)
Diffstat (limited to 'src')
-rw-r--r--src/widgets/toolbox.cpp4
1 files changed, 2 insertions, 2 deletions
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 << " <span foreground='darkgray' font_family='" << family_escaped << "'>" << sample_escaped << "</span>";
+ markup << family_escaped << " <span foreground='darkgray' font_family='" << family_escaped << "'>" << sample_escaped << "</span>";
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);