diff options
| -rw-r--r-- | apps/gui/scrollbar.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/gui/scrollbar.c b/apps/gui/scrollbar.c index 8a0b885..0f2a485 100644 --- a/apps/gui/scrollbar.c +++ b/apps/gui/scrollbar.c @@ -96,10 +96,8 @@ void gui_scrollbar_draw(struct screen * screen, int x, int y, /* Boundary check to make sure that height is reasonable, otherwise nothing * to do */ - if(height<2 || width<2) - { + if ((inner_wd | inner_ht) < 0) return; - } if (flags & HORIZONTAL) inner_len = inner_wd; |