SF.net SVN: geany:[4216] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Mon Sep 21 12:58:05 UTC 2009


Revision: 4216
          http://geany.svn.sourceforge.net/geany/?rev=4216&view=rev
Author:   ntrel
Date:     2009-09-21 12:58:05 +0000 (Mon, 21 Sep 2009)

Log Message:
-----------
Split Build Commands dialog notes label and edit text.

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

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2009-09-21 12:47:20 UTC (rev 4215)
+++ trunk/ChangeLog	2009-09-21 12:58:05 UTC (rev 4216)
@@ -5,6 +5,8 @@
    browser delay on displaying a big directory, e.g. /usr/bin.
  * src/build.c:
    Expand command entry width when expanding Build Commands dialog.
+ * src/build.c:
+   Split Build Commands dialog notes label and edit text.
 
 
 2009-09-20  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>

Modified: trunk/src/build.c
===================================================================
--- trunk/src/build.c	2009-09-21 12:47:20 UTC (rev 4215)
+++ trunk/src/build.c	2009-09-21 12:58:05 UTC (rev 4216)
@@ -1870,6 +1870,11 @@
 	gtk_widget_set_sensitive(fields->nonfileregex, sensitivity);
 	gtk_widget_set_sensitive(clear, sensitivity);
 	++row;
+	label = gtk_label_new(_("Note: Item 2 opens a dialog and appends the response to the command."));
+	gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5);
+	gtk_table_attach(table, label, 0, DC_N_COL, row, row + 1, GTK_FILL, GTK_FILL | GTK_EXPAND,
+		entry_x_padding, entry_y_padding);
+	++row;
 	sep = gtk_hseparator_new();
 	gtk_table_attach(table, sep, 0, DC_N_COL, row, row + 1, GTK_FILL, GTK_FILL | GTK_EXPAND,
 		entry_x_padding, entry_y_padding);
@@ -1888,10 +1893,8 @@
 	gtk_table_attach(table, sep, 0, DC_N_COL, row, row + 1, GTK_FILL, GTK_FILL | GTK_EXPAND,
 		entry_x_padding, entry_y_padding);
 	++row;
-	label = gtk_label_new(_(
-				"Notes:\n"
-				"   %d, %e, %f, %p are substituted in Commands and Working dir, see manual for details\n"
-				"   Non-filetype menu Item 2 opens a dialog and appends the reponse to the command"));
+	label = gtk_label_new(
+		_("%d, %e, %f, %p are substituted in command and directory fields, see manual for details."));
 	gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5);
 	gtk_table_attach(table, label, 0, DC_N_COL, row, row + 1, GTK_FILL, GTK_FILL | GTK_EXPAND,
 		entry_x_padding, entry_y_padding);


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