From cec43a6cb1d889b16c0b1e872e81c08e71045663 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Fri, 20 Oct 2006 01:07:16 +0000 Subject: Don't start widgets offset by 1/2 the spacing value. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5526 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Pack.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/Fl_Pack.cxx b/src/Fl_Pack.cxx index e82fd19a1..569e29a83 100644 --- a/src/Fl_Pack.cxx +++ b/src/Fl_Pack.cxx @@ -3,7 +3,7 @@ // // Packing widget for the Fast Light Tool Kit (FLTK). // -// Copyright 1998-2005 by Bill Spitzak and others. +// Copyright 1998-2006 by Bill Spitzak and others. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Library General Public @@ -47,7 +47,7 @@ void Fl_Pack::draw() { int tw = w()-Fl::box_dw(box()); int th = h()-Fl::box_dh(box()); int rw, rh; - int current_position = (horizontal() ? tx : ty) + spacing_ / 2; + int current_position = horizontal() ? tx : ty; int maximum_position = current_position; uchar d = damage(); Fl_Widget*const* a = array(); -- cgit v1.2.3