fix keyboard accelerators in debug messages window

(Thanks Can Koy!)

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4709 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Dominic Hopf 2010-02-28 13:06:05 +00:00
parent f7c739923c
commit d1cdc2a345
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2010-02-26 Dominic Hopf <dmaphy(at)googlemail(dot)com>
* src/log.c:
fix keyboard accelerators in debug messages window
(Thanks Can Koy!)
2010-02-28 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de> 2010-02-28 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* scintilla/LexR.cxx: * scintilla/LexR.cxx:

View File

@ -180,7 +180,7 @@ void log_show_debug_messages_dialog(void)
dialog = gtk_dialog_new_with_buttons(_("Debug Messages"), GTK_WINDOW(main_widgets.window), dialog = gtk_dialog_new_with_buttons(_("Debug Messages"), GTK_WINDOW(main_widgets.window),
GTK_DIALOG_DESTROY_WITH_PARENT, GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_STOCK_CLEAR, DIALOG_RESPONSE_CLEAR, _("Cl_ear"), DIALOG_RESPONSE_CLEAR,
GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, NULL); GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, NULL);
vbox = ui_dialog_vbox_new(GTK_DIALOG(dialog)); vbox = ui_dialog_vbox_new(GTK_DIALOG(dialog));
gtk_box_set_spacing(GTK_BOX(vbox), 6); gtk_box_set_spacing(GTK_BOX(vbox), 6);