From 68acd069dad4c923effe7ad4d15cbb1c25d752b7 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Sat, 23 Feb 2019 22:40:56 +0100 Subject: [PATCH] moviebrowser.cpp: fix position of top marker for details line Top marker was painted at wrong y position. Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/7cff6f52a2cf8c59bbfb96fbbd9e8f52af893b54 Author: Thilo Graf Date: 2019-02-23 (Sat, 23 Feb 2019) --- 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 1735a5555..a9cd1ce15 100644 --- a/src/gui/moviebrowser/mb.cpp +++ b/src/gui/moviebrowser/mb.cpp @@ -1645,7 +1645,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)