From 0d1619697e97656bdda0d0e1bbdb3d15f64d00d0 Mon Sep 17 00:00:00 2001 From: Tadej Novak Date: Sun, 19 Aug 2012 16:05:52 +0200 Subject: [PATCH] Update: Changed playlist OSD position in fullscreen (cherry picked from commit 85eb1b209dab31bb10a451d9074ea61361342cf4) --- src/ui/core/OsdFloat.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/ui/core/OsdFloat.cpp b/src/ui/core/OsdFloat.cpp index 03eb25b0..3ff8bd5c 100644 --- a/src/ui/core/OsdFloat.cpp +++ b/src/ui/core/OsdFloat.cpp @@ -112,11 +112,7 @@ void OsdFloat::setInfo() resize(_defaultWidth, _defaultHeight); _defaultX = _desktopWidth - width(); - if (_desktopHeight > 800) { - _defaultY = (_desktopHeight - height())/2; - } else { - _defaultY = 0; - } + _defaultY = (_desktopHeight - height() - 100)/2; move(_defaultX, _defaultY); }