Addon Manager: Eliminate use of QDeadlineTimer
This class is apparently missing in some installs of Qt 5.11.3, so remove the use of it.
This commit is contained in:
@@ -419,7 +419,7 @@ class CommandAddonManager:
|
||||
thread = getattr(self, worker)
|
||||
if thread:
|
||||
if not thread.isFinished():
|
||||
finished = thread.wait(QtCore.QDeadlineTimer(500))
|
||||
finished = thread.wait(500)
|
||||
if not finished:
|
||||
FreeCAD.Console.PrintWarning(
|
||||
translate(
|
||||
|
||||
Reference in New Issue
Block a user