mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-02 18:31:12 +02:00
Merge branch 'master' of https://github.com/tuxbox-neutrino/gui-neutrino into ni/tuxbox
Origin commit data
------------------
Branch: ni/coolstream
Commit: 1875ced1c5
Author: gixxpunk <thomas.harfmann@gmail.com>
Date: 2017-09-19 (Tue, 19 Sep 2017)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -87,9 +87,6 @@ void* CComponentsTimer::initThreadAction(void *arg)
|
||||
//start up running timer with own thread, return true on succses
|
||||
void CComponentsTimer::initThread()
|
||||
{
|
||||
if (!tm_enable)
|
||||
return;
|
||||
|
||||
if(!tm_thread) {
|
||||
void *ptr = static_cast<void*>(this);
|
||||
|
||||
|
@@ -1101,16 +1101,17 @@ void CMenuWidget::integratePlugins(int integration, const unsigned int shortcut,
|
||||
|
||||
void CMenuWidget::hide()
|
||||
{
|
||||
if(savescreen && background)
|
||||
if(savescreen && background) {
|
||||
ResetModules();
|
||||
restoreScreen();//FIXME
|
||||
else {
|
||||
} else {
|
||||
if (header)
|
||||
header->kill();
|
||||
if (info_box)
|
||||
info_box->kill();
|
||||
if (details_line)
|
||||
details_line->hide();
|
||||
frameBuffer->paintBackgroundBoxRel(x, y, full_width, full_height + footer_height);
|
||||
frameBuffer->paintBackgroundBoxRel(x, y, full_width, full_height/* + footer_height*/); // full_height includes footer_height : see calcSize
|
||||
//paintHint(-1);
|
||||
}
|
||||
paintHint(-1);
|
||||
@@ -1330,7 +1331,7 @@ void CMenuWidget::setMenuPos(const int& menu_width)
|
||||
int scr_y = frameBuffer->getScreenY();
|
||||
int scr_w = frameBuffer->getScreenWidth();
|
||||
int scr_h = frameBuffer->getScreenHeight();
|
||||
int real_h = full_height + footer_height + hint_height;
|
||||
int real_h = full_height/* + footer_height*/ + hint_height; // full_height includes footer_height : see calcSize
|
||||
int x_old = x;
|
||||
int y_old = y;
|
||||
//configured positions
|
||||
@@ -1450,7 +1451,7 @@ void CMenuWidget::saveScreen()
|
||||
return;
|
||||
|
||||
delete[] background;
|
||||
saveScreen_height = full_height+footer_height;
|
||||
saveScreen_height = full_height/* + footer_height*/; // full_height includes footer_height : see calcSize
|
||||
saveScreen_width = full_width;
|
||||
saveScreen_y = y;
|
||||
saveScreen_x = x;
|
||||
@@ -1483,7 +1484,7 @@ void CMenuWidget::enableSaveScreen(bool enable)
|
||||
void CMenuWidget::paintHint(int pos)
|
||||
{
|
||||
if (!g_settings.show_menu_hints){
|
||||
ResetModules(); //ensure clean up on changed setting
|
||||
//ResetModules(); //ensure clean up on changed setting
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user