upnpbrowser: activate shadow on scrollbar

Origin commit data
------------------
Commit: 606ef396e1
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-06-19 (Mon, 19 Jun 2017)

Origin message was:
------------------
- upnpbrowser: activate shadow on scrollbar
This commit is contained in:
vanhofen
2017-06-19 17:21:33 +02:00
parent cd05152aab
commit a5fb1c63e7

View File

@@ -1009,10 +1009,7 @@ void CUpnpBrowserGui::paintDevices()
int total_pages;
int current_page;
getScrollBarData(&total_pages, &current_page, m_devices.size(), m_listmaxshow, m_selecteddevice);
paintScrollBar(m_x + m_width - SCROLLBAR_WIDTH, m_item_y, SCROLLBAR_WIDTH, m_item_height*m_listmaxshow, total_pages, current_page);
//shadow
m_frameBuffer->paintBoxRel(m_x + m_width, m_item_y + OFFSET_SHADOW, OFFSET_SHADOW, m_item_height*m_listmaxshow, COL_SHADOW_PLUS_0);
paintScrollBar(m_x + m_width - SCROLLBAR_WIDTH, m_item_y, SCROLLBAR_WIDTH, m_item_height*m_listmaxshow, total_pages, current_page, CC_SHADOW_ON);
// Foot
footer.setCorner(RADIUS_LARGE, CORNER_BOTTOM);
@@ -1184,7 +1181,7 @@ void CUpnpBrowserGui::paintItems(std::vector<UPnPEntry> *entry, unsigned int sel
int total_pages;
int current_page;
getScrollBarData(&total_pages, &current_page, max + offset, m_listmaxshow, selected + offset);
paintScrollBar(m_x + m_width - SCROLLBAR_WIDTH, m_item_y, SCROLLBAR_WIDTH, m_item_height*m_listmaxshow, total_pages, current_page);
paintScrollBar(m_x + m_width - SCROLLBAR_WIDTH, m_item_y, SCROLLBAR_WIDTH, m_item_height*m_listmaxshow, total_pages, current_page, CC_SHADOW_ON);
// Foot buttons
size_t numbuttons = sizeof(BrowseButtons)/sizeof(BrowseButtons[0]);