Skip to content

Commit

Permalink
MythMainWindow: Don't hide the painter window if is shared.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Kendall committed May 2, 2011
1 parent 9eb4f5f commit 285b967
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythtv/libs/libmythui/mythmainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,8 @@ void MythMainWindow::HidePainterWindow(void)
if (d->paintwin)
{
d->paintwin->clearMask();
d->paintwin->hide();
if (!(d->render && d->render->IsShared()))
d->paintwin->hide();
}
}

Expand Down

0 comments on commit 285b967

Please sign in to comment.