mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 08:51:10 +02:00
neutrino: fix black rectangle on screen
The 'starting neutrino...' hintbox was hidden too late, so that it overlapped with the 'reloading channels' box which caused a black rectangle to stay on screen. Fix ordering.
This commit is contained in:
@@ -1853,6 +1853,9 @@ int CNeutrinoApp::run(int argc, char **argv)
|
|||||||
hdd->exec(NULL, "");
|
hdd->exec(NULL, "");
|
||||||
delete hdd;
|
delete hdd;
|
||||||
|
|
||||||
|
hintBox->hide(); // InitZapper also displays a hintbox
|
||||||
|
delete hintBox;
|
||||||
|
|
||||||
g_volume = CVolume::getInstance();
|
g_volume = CVolume::getInstance();
|
||||||
cCA::GetInstance()->Ready(true);
|
cCA::GetInstance()->Ready(true);
|
||||||
InitZapper();
|
InitZapper();
|
||||||
@@ -1860,9 +1863,6 @@ int CNeutrinoApp::run(int argc, char **argv)
|
|||||||
g_volume->AudioMute(current_muted, true);
|
g_volume->AudioMute(current_muted, true);
|
||||||
SHTDCNT::getInstance()->init();
|
SHTDCNT::getInstance()->init();
|
||||||
|
|
||||||
hintBox->hide();
|
|
||||||
delete hintBox;
|
|
||||||
|
|
||||||
RealRun(personalize.getWidget(0)/**main**/);
|
RealRun(personalize.getWidget(0)/**main**/);
|
||||||
|
|
||||||
ExitRun(true, (cs_get_revision() > 7));
|
ExitRun(true, (cs_get_revision() > 7));
|
||||||
|
Reference in New Issue
Block a user