This is the mail archive of the insight@sources.redhat.com mailing list for the Insight project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] clean up targetselection dialog


This removes a duplicate lable and fixes alignment in the target dialog.
2003-02-03  Martin M. Hunt  <hunt@redhat.com>

	* library/targetselection.itb (TargetSelection::build_win): Remove
duplicate label.





Index: library/targetselection.itb
===================================================================
RCS file: /cvs/src/src/gdb/gdbtk/library/targetselection.itb,v
retrieving revision 1.14
diff -u -r1.14 targetselection.itb
--- library/targetselection.itb	4 Feb 2003 07:43:32 -0000	1.14
+++ library/targetselection.itb	4 Feb 2003 08:01:32 -0000
@@ -547,7 +547,6 @@
   set rm_frame [iwidgets::labeledframe $frame.run_method -labelpos nw -labeltext "Run Method" ]
   set RunMethod [ $rm_frame childsite ]
 
-  set rm_label [label $frame.label -text "Run Method:"]
   set var [pref varname gdb/src/run_cont]
   radiobutton $RunMethod.cont -text {Continue from Last Stop} -value 1 -variable $var \
     -command [code $this set_run run]
@@ -560,9 +559,8 @@
   set _after_entry [entry $frame.aftere]
   label $frame.afterl -text {Command to issue after attaching:}
 
-  grid $frame.label -column 1 -row 0 -sticky w
-  grid $frame.attach -column 0 -row 1 -ipady 2
-  grid $frame.load -column 0 -row 2 -ipady 2
+  grid $frame.attach -column 0 -row 1 -padx 10 -sticky w
+  grid $frame.load -column 0 -row 2 -padx 10 -sticky w
 
   grid $RunMethod.run -column 0 -row 1 -sticky w -ipady 2
   grid $RunMethod.cont -column 0 -row 2 -sticky w -ipady 2

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]