Skip to content

Commit

Permalink
mythtv-setup hanging at Video Sources
Browse files Browse the repository at this point in the history
On Ubuntu 22.10 mythtv-setup hangs in Video Sources when creating a new Video source.
The problem has been traced to running tv_find_grabbers by MythSystemLegacy.
The fix consists of adding the kMSDontDisableDrawing flag to the invocation of MythSystemLegacy.
It is not clear why this problem only appears on Ubuntu 22.10 and not on other distro's.

Refs #690
  • Loading branch information
kmdewaal committed Mar 12, 2023
1 parent e594b56 commit 337500e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/videosource.cpp
Expand Up @@ -298,7 +298,7 @@ class XMLTVGrabber : public MythUIComboBoxSetting
args += "baseline";

MythSystemLegacy find_grabber_proc("tv_find_grabbers", args,
kMSStdOut | kMSRunShell);
kMSStdOut | kMSRunShell | kMSDontDisableDrawing);
find_grabber_proc.Run(25s);
LOG(VB_GENERAL, LOG_INFO,
loc + "Running 'tv_find_grabbers " + args.join(" ") + "'.");
Expand Down

0 comments on commit 337500e

Please sign in to comment.