diff options
Diffstat (limited to 'plugingui/scrollbar.cc')
-rw-r--r-- | plugingui/scrollbar.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugingui/scrollbar.cc b/plugingui/scrollbar.cc index 3107987..c175720 100644 --- a/plugingui/scrollbar.cc +++ b/plugingui/scrollbar.cc @@ -107,11 +107,11 @@ static void drawArrow(GUI::Painter &p, int x, int y, int w, int h) void GUI::ScrollBar::repaintEvent(RepaintEvent *e) { - GUI::Painter p(this); + GUI::Painter p(*this); p.clear(); - p.drawImageStretched(0, 0, &bg_img, width(), height()); + p.drawImageStretched(0, 0, bg_img, width(), height()); p.setColour(GUI::Colour(183.0/255.0, 219.0/255.0 , 255.0/255.0, 1)); if(!max) return; |