Improved tooltip for auto completion.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1314 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2007-02-21 16:02:19 +00:00
parent d863a8047c
commit 95868d4f34
3 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@
Made auto_close_bracket() static and auto close brackets only when
auto completion of constructs is enabled (closes #1665015).
* doc/geany.1.in: Fixed typo.
* geany.glade, src/interface.c: Improved tooltip for auto completion.
2007-02-20 Nick Treleaven <nick.treleaven@btinternet.com>

View File

@ -5476,7 +5476,7 @@ Bottom
<child>
<widget class="GtkCheckButton" id="check_symbol_auto_completion">
<property name="visible">True</property>
<property name="tooltip" translatable="yes">Automatic completion of known symbols in open source file(s) (function, global variables, ...)</property>
<property name="tooltip" translatable="yes">Automatic completion of known symbols in open files (function names, global variables, ...)</property>
<property name="can_focus">True</property>
<property name="label" translatable="yes">Symbol autocompletion</property>
<property name="use_underline">True</property>

View File

@ -3345,7 +3345,7 @@ create_prefs_dialog (void)
check_symbol_auto_completion = gtk_check_button_new_with_mnemonic (_("Symbol autocompletion"));
gtk_widget_show (check_symbol_auto_completion);
gtk_box_pack_start (GTK_BOX (vbox19), check_symbol_auto_completion, FALSE, FALSE, 0);
gtk_tooltips_set_tip (tooltips, check_symbol_auto_completion, _("Automatic completion of known symbols in open source file(s) (function, global variables, ...)"), NULL);
gtk_tooltips_set_tip (tooltips, check_symbol_auto_completion, _("Automatic completion of known symbols in open files (function names, global variables, ...)"), NULL);
gtk_button_set_focus_on_click (GTK_BUTTON (check_symbol_auto_completion), FALSE);
hbox6 = gtk_hbox_new (FALSE, 20);