diff options
Diffstat (limited to 'plugingui/filebrowser.cc')
-rw-r--r-- | plugingui/filebrowser.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugingui/filebrowser.cc b/plugingui/filebrowser.cc index 9635c94..6872a4e 100644 --- a/plugingui/filebrowser.cc +++ b/plugingui/filebrowser.cc @@ -131,8 +131,8 @@ void FileBrowser::resize(int w, int h) void FileBrowser::repaintEvent(RepaintEvent *e) { - Painter p(this); - p.drawImageStretched(0,0, &back, width(), height()); + Painter p(*this); + p.drawImageStretched(0,0, back, width(), height()); } void FileBrowser::listSelectionChanged() |