Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff --git a/mythtv/libs/libmythui/mythscreenstack.cpp b/mythtv/libs/libmythui/mythscreenstack.cpp
- index 3caebf8..cf36f23 100644
- --- a/mythtv/libs/libmythui/mythscreenstack.cpp
- +++ b/mythtv/libs/libmythui/mythscreenstack.cpp
- @@ -61,7 +61,7 @@ void MythScreenStack::AddScreen(MythScreenType *screen, bool allowFade)
- m_DoInit = false;
- MythScreenType *old = m_topScreen;
- - if (old)
- + if (old && old->IsFullscreen())
- old->aboutToHide();
- m_Children.push_back(screen);
- @@ -155,7 +155,8 @@ void MythScreenStack::PopScreen(MythScreenType *screen, bool allowFade,
- {
- m_topScreen = (*it);
- (*it)->SetAlpha(255);
- - (*it)->aboutToShow();
- + if ((*it)->IsFullscreen())
- + (*it)->aboutToShow();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement