Skip to content

Commit

Permalink
MythNetVision: Fixes for recent libmythui changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-kendall committed Sep 30, 2020
1 parent 4946afe commit 95adbb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythplugins/mythnetvision/mythnetvision/netbase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,12 +171,12 @@ void NetBase::ShowWebVideo()
void NetBase::RunCmdWithoutScreensaver(const QString &cmd)
{
GetMythMainWindow()->PauseIdleTimer(true);
MythUIHelper::DisableScreensaver();
MythMainWindow::DisableScreensaver();
GetMythMainWindow()->AllowInput(false);
myth_system(cmd, kMSDontDisableDrawing);
GetMythMainWindow()->AllowInput(true);
GetMythMainWindow()->PauseIdleTimer(false);
MythUIHelper::RestoreScreensaver();
MythMainWindow::RestoreScreensaver();
}

void NetBase::SlotDeleteVideo()
Expand Down

0 comments on commit 95adbb5

Please sign in to comment.