ekiga r6654 - in trunk: . src/gui



Author: dsandras
Date: Tue Aug 19 20:51:18 2008
New Revision: 6654
URL: http://svn.gnome.org/viewvc/ekiga?rev=6654&view=rev

Log:
Disable inline completion in the URL bar, it can be obtrusive.


Modified:
   trunk/ChangeLog
   trunk/src/gui/main.cpp

Modified: trunk/src/gui/main.cpp
==============================================================================
--- trunk/src/gui/main.cpp	(original)
+++ trunk/src/gui/main.cpp	Tue Aug 19 20:51:18 2008
@@ -1611,7 +1611,7 @@
   completion = gtk_entry_completion_new ();
   gtk_entry_completion_set_model (GTK_ENTRY_COMPLETION (completion), GTK_TREE_MODEL (mw->completion));
   gtk_entry_set_completion (GTK_ENTRY (mw->entry), completion);
-  gtk_entry_completion_set_inline_completion (GTK_ENTRY_COMPLETION (completion), true);
+  gtk_entry_completion_set_inline_completion (GTK_ENTRY_COMPLETION (completion), false);
   gtk_entry_completion_set_text_column (GTK_ENTRY_COMPLETION (completion), 0);
 
   gtk_container_add (GTK_CONTAINER (item), mw->entry);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]