summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2005-11-07 08:44:54 +0000
committerMatthias Melcher <fltk@matthiasm.com>2005-11-07 08:44:54 +0000
commitba4b17c5454dcdd0945d30d82f3cbba94fb65dee (patch)
tree6ce93f3a2ed91def6eb5001cecac34545df5a087 /src
parent0a41e770c38a284612730ff7f4b229ef21123ddf (diff)
Don't draw plastic boxes that are 0x0 pixels in size or smaller
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4644 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/fl_plastic.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fl_plastic.cxx b/src/fl_plastic.cxx
index c3f5f1d34..72bac9b66 100644
--- a/src/fl_plastic.cxx
+++ b/src/fl_plastic.cxx
@@ -301,6 +301,7 @@ static void up_box(int x, int y, int w, int h, Fl_Color c) {
static void narrow_thin_box(int x, int y, int w, int h, Fl_Color c) {
+ if (h<=0 || w<=0) return;
uchar *g = fl_gray_ramp();
fl_color(shade_color(g['R'], c));
fl_rectf(x+1, y+1, w-2, h-2);