diff options
author | Jonas Suhr Christensen <jsc@umbraculum.org> | 2014-11-05 14:39:42 +0100 |
---|---|---|
committer | Jonas Suhr Christensen <jsc@umbraculum.org> | 2014-11-05 14:39:42 +0100 |
commit | f9fe5f987f8ac1a4f1df6cd38c866b6c6cf461bb (patch) | |
tree | 16fb6f2ff37903754adfa6220910177e34613cd6 | |
parent | 172441ad3847e77670a07067bbae3ee04da3dd48 (diff) |
Moved logo.
-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) |