[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: CVS update: x_dialog.nw
User: werner
Date: 06/04/09 04:59:53
Modified: . x_dialog.nw
Log:
find_text_dialog(): changed layout
Revision Changes Path
1.39 +6 -6 eda/geda/devel/gschem/noweb/x_dialog.nw
(In the diff below, changes in quantity of whitespace are not shown.)
Index: x_dialog.nw
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/gschem/noweb/x_dialog.nw,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -b -r1.38 -r1.39
--- x_dialog.nw 11 Jan 2006 14:44:30 -0000 1.38
+++ x_dialog.nw 9 Apr 2006 08:59:53 -0000 1.39
@@ -4266,9 +4266,9 @@
gtk_window_set_title(GTK_WINDOW(w_current->tswindow), _("Find text"));
gtk_container_border_width(GTK_CONTAINER(w_current->tswindow), 10);
+ gtk_box_set_spacing(GTK_BOX(vbox),10);
label = gtk_label_new(_("Text to find:"));
- gtk_misc_set_padding(GTK_MISC(label), 20, 20);
gtk_box_pack_start(GTK_BOX(vbox), label, TRUE, TRUE, 0);
gtk_widget_show(label);
@@ -4280,6 +4280,11 @@
gtk_widget_show(w_current->tsentry);
gtk_widget_grab_focus(w_current->tsentry);
+ checkdescend =
+ gtk_check_button_new_with_label(_("descend into hierarchy"));
+ /* gtk_object_set_data (GTK_OBJECT (w_current->tswindow), "descend", w_current->preview_checkbox);*/
+ gtk_box_pack_start(GTK_BOX(vbox), checkdescend, TRUE, TRUE, 0);
+
#ifdef HAS_GTK12
buttonok = gtk_button_new_with_label(_("Find"));
#else
@@ -4301,11 +4306,6 @@
GTK_SIGNAL_FUNC(find_text_done), w_current);
- checkdescend =
- gtk_check_button_new_with_label(_("descend into hierarchy"));
- /* gtk_object_set_data (GTK_OBJECT (w_current->tswindow), "descend", w_current->preview_checkbox);*/
-
- gtk_box_pack_start(GTK_BOX(action_area), checkdescend, TRUE, TRUE, 0);
gtk_widget_show(buttonok);
gtk_widget_show(buttondone);