From: Kaj Wallin Date: Wed, 19 May 2010 05:00:25 +0000 (+0300) Subject: Fixed scaling bug on userinfopanel when on desktop X-Git-Tag: v0.5~51 X-Git-Url: http://git.maemo.org/git/?a=commitdiff_plain;h=126ad5d5f8a85b25b0bbeb9cd3ba530d3a710f48;p=situare Fixed scaling bug on userinfopanel when on desktop Reviewed by: Henri Lampela --- diff --git a/debian/changelog b/debian/changelog index db83536..eafb800 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,7 +2,7 @@ situare (0.4-1) unstable; urgency=low * Initial pre-alpha release Basic functionality is completely usable. Usability might not be top notch and many feature will be added or changed - -- Kaj Wallin Wed, 12 May 2010 13:51:00 +0300 + -- Kaj Wallin Wed, 18 May 2010 14:00:00 +0300 situare (0.1-1) unstable; urgency=low diff --git a/src/ui/userpanel.cpp b/src/ui/userpanel.cpp index 05ecf40..031a598 100644 --- a/src/ui/userpanel.cpp +++ b/src/ui/userpanel.cpp @@ -102,6 +102,6 @@ void UserInfoPanel::reDrawUserPanel(int width, int height) { qDebug() << __PRETTY_FUNCTION__; Q_UNUSED(width); - m_panelBase->resize(USERPANEL_WIDTH, height + MARGIN_CORRECTION); - resize(USERPANEL_WIDTH + SLIDINGBAR_WIDTH,height + MARGIN_CORRECTION); + m_panelBase->resize(USERPANEL_WIDTH, SLIDINGBAR_HEIGHT + MARGIN_CORRECTION); + resize(USERPANEL_WIDTH + SLIDINGBAR_WIDTH,SLIDINGBAR_HEIGHT + MARGIN_CORRECTION); }