diff options
-rw-r--r-- | plugingui/window.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/plugingui/window.cc b/plugingui/window.cc index 8337533..97f71bc 100644 --- a/plugingui/window.cc +++ b/plugingui/window.cc @@ -94,8 +94,11 @@ void GUI::Window::repaintEvent(GUI::RepaintEvent *e) Painter p(this); p.drawImageStretched(0,0, &back, width(), height()); - p.drawImage(width() - logo.width(), - height() - logo.height(), &logo); +// p.drawImage(width() - logo.width(), +// height() - logo.height(), &logo); + p.drawImage(370 - logo.width(), + 330 - logo.height(), &logo); + } void GUI::Window::setFixedSize(int w, int h) |