From ab5f31c0a1aab22701c961fce1f0e93e5b8c04c5 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Fri, 22 Feb 2019 17:56:36 +0100 Subject: [PATCH] moviebrowser.cpp: fix position of top marker for details line Top marker was painted at wrong y position. --- src/gui/moviebrowser/mb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/moviebrowser/mb.cpp b/src/gui/moviebrowser/mb.cpp index 6dbc910a0..d6fa6fec9 100644 --- a/src/gui/moviebrowser/mb.cpp +++ b/src/gui/moviebrowser/mb.cpp @@ -1627,7 +1627,7 @@ void CMovieBrowser::refreshDetailsLine(int pos) int theight = m_pcBrowser->getTitleHeight(); int xpos = m_cBoxFrameBrowserList.iX - DETAILSLINE_WIDTH; - int ypos1 = m_cBoxFrameBrowserList.iY + hheight + theight + OFFSET_INNER_MID + pos*fheight + (fheight/2); + int ypos1 = m_cBoxFrameBrowserList.iY + hheight + theight + pos*fheight + (fheight/2); int ypos2 = m_cBoxFrameInfo1.iY + (m_cBoxFrameInfo1.iHeight/2); if (m_detailsLine == NULL)