summaryrefslogtreecommitdiff
path: root/src/Fl_Value_Output.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-07-20 05:56:44 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-07-20 05:56:44 +0000
commit667eb3ef6ccb6d2efdd732f2935e2c4d052d915d (patch)
tree349c3b0d699bd116436520bf8c130b194565e854 /src/Fl_Value_Output.cxx
parent66f06dae9ed57612897f1c24dde6b5818024fba5 (diff)
Remove 3 pixel X border in input fields.
Don't quote chars 0x80 to 0x9f in input fields (labels didn't...) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2541 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Value_Output.cxx')
-rw-r--r--src/Fl_Value_Output.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_Value_Output.cxx b/src/Fl_Value_Output.cxx
index f3fe7c74a..7b0e0ab25 100644
--- a/src/Fl_Value_Output.cxx
+++ b/src/Fl_Value_Output.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Value_Output.cxx,v 1.6.2.3.2.3 2002/05/12 11:12:56 easysw Exp $"
+// "$Id: Fl_Value_Output.cxx,v 1.6.2.3.2.4 2002/07/20 05:56:44 easysw Exp $"
//
// Value output widget for the Fast Light Tool Kit (FLTK).
//
@@ -47,7 +47,7 @@ void Fl_Value_Output::draw() {
format(buf);
fl_color(active_r() ? textcolor() : fl_inactive(textcolor()));
fl_font(textfont(), textsize());
- fl_draw(buf,X+3,Y,W-6,H,FL_ALIGN_LEFT);
+ fl_draw(buf,X,Y,W,H,FL_ALIGN_LEFT);
}
int Fl_Value_Output::handle(int event) {
@@ -97,5 +97,5 @@ Fl_Value_Output::Fl_Value_Output(int x,int y,int w,int h,const char *l)
}
//
-// End of "$Id: Fl_Value_Output.cxx,v 1.6.2.3.2.3 2002/05/12 11:12:56 easysw Exp $".
+// End of "$Id: Fl_Value_Output.cxx,v 1.6.2.3.2.4 2002/07/20 05:56:44 easysw Exp $".
//