SF.net SVN: geany:[4725] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Sun Mar 7 10:37:35 UTC 2010


Revision: 4725
          http://geany.svn.sourceforge.net/geany/?rev=4725&view=rev
Author:   eht16
Date:     2010-03-07 10:37:35 +0000 (Sun, 07 Mar 2010)

Log Message:
-----------
Fix wrong default response for the Debug Messages dialog.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/log.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2010-03-07 10:36:27 UTC (rev 4724)
+++ trunk/ChangeLog	2010-03-07 10:37:35 UTC (rev 4725)
@@ -5,6 +5,8 @@
  * geany.glade, doc/geany.txt, doc/geany.html, src/editor.c,
    src/editor.h, src/interface.c, src/keyfile.c, src/plugindata.h:
    Add preference for virtual spaces.
+ * src/log.c:
+   Fix wrong default response for the Debug Messages dialog.
 
 
 2010-03-05  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>

Modified: trunk/src/log.c
===================================================================
--- trunk/src/log.c	2010-03-07 10:36:27 UTC (rev 4724)
+++ trunk/src/log.c	2010-03-07 10:37:35 UTC (rev 4725)
@@ -187,7 +187,7 @@
 	gtk_widget_set_name(dialog, "GeanyDialog");
 
 	gtk_window_set_default_size(GTK_WINDOW(dialog), 550, 300);
-	gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_CANCEL);
+	gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_CLOSE);
 
 	textview = gtk_text_view_new();
 	dialog_textbuffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(textview));


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list