Browse Source

Fix widget spacing to conform to the HIG.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4535 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
pull/168/head
Michael R Sweet 20 years ago
parent
commit
1db26430c2
  1. 2
      fluid/widget_panel.cxx
  2. 6
      fluid/widget_panel.fl

2
fluid/widget_panel.cxx

@ -738,7 +738,7 @@ access the Widget pointer and \'v\' to access the user value.");
o->callback((Fl_Callback*)cancel_cb); o->callback((Fl_Callback*)cancel_cb);
o->hide(); o->hide();
} }
{ Fl_Button* o = wLiveMode = new Fl_Button(145, 325, 84, 20, "LIve &Mode"); { Fl_Button* o = wLiveMode = new Fl_Button(142, 325, 84, 20, "LIve &Mode");
o->tooltip("Hide the widget overlay box."); o->tooltip("Hide the widget overlay box.");
o->type(1); o->type(1);
o->labelsize(11); o->labelsize(11);

6
fluid/widget_panel.fl

@ -43,7 +43,7 @@ Function {make_widget_panel()} {open
} { } {
Fl_Group {} { Fl_Group {} {
label GUI label GUI
callback propagate_load selected callback propagate_load
xywh {5 25 400 290} labelsize 11 when 0 resizable xywh {5 25 400 290} labelsize 11 when 0 resizable
} { } {
Fl_Group {} { Fl_Group {} {
@ -510,7 +510,7 @@ Function {make_widget_panel()} {open
} }
Fl_Button {} { Fl_Button {} {
label {Hide &Overlays} label {Hide &Overlays}
callback overlay_cb callback overlay_cb selected
tooltip {Hide the widget overlay box.} xywh {231 325 99 20} labelsize 11 labelcolor 1 tooltip {Hide the widget overlay box.} xywh {231 325 99 20} labelsize 11 labelcolor 1
} }
Fl_Button {} { Fl_Button {} {
@ -531,7 +531,7 @@ Function {make_widget_panel()} {open
Fl_Button wLiveMode { Fl_Button wLiveMode {
label {LIve &Mode} label {LIve &Mode}
callback live_mode_cb callback live_mode_cb
tooltip {Hide the widget overlay box.} xywh {145 325 84 20} type Toggle labelsize 11 labelcolor 0 tooltip {Hide the widget overlay box.} xywh {142 325 84 20} type Toggle labelsize 11 labelcolor 0
} }
} }
} }

Loading…
Cancel
Save