Fix Prefs dialog Tools tab Context Action open button showing the

file dialog twice.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3170 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2008-11-04 13:33:08 +00:00
parent 8355e6a158
commit eebfbbf488
2 changed files with 5 additions and 3 deletions

View File

@ -3,7 +3,11 @@
* src/editor.c:
Fix snippets and smart indent using too much indentation when the
line contains whitespace after non-whitespace characters. This
might also have affected other features (auto table, etc).
might also have affected other features (auto table, etc). (Fixes
#2215044).
* src/prefs.c:
Fix Prefs dialog Tools tab Context Action open button showing the
file dialog twice.
2008-11-03 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>

View File

@ -1659,8 +1659,6 @@ void prefs_show_dialog(void)
/* tools commands */
g_signal_connect(lookup_widget(ui_widgets.prefs_dialog, "button_contextaction"),
"clicked", G_CALLBACK(on_prefs_tools_button_clicked), lookup_widget(ui_widgets.prefs_dialog, "entry_contextaction"));
g_signal_connect(lookup_widget(ui_widgets.prefs_dialog, "button_contextaction"),
"clicked", G_CALLBACK(on_prefs_tools_button_clicked), lookup_widget(ui_widgets.prefs_dialog, "entry_contextaction"));
/* printing */
g_signal_connect(lookup_widget(ui_widgets.prefs_dialog, "button_print_external_cmd"),