commit 4b22d928e60de898a31241082abfc6ec0796bcbb
parent 2f8a248e05e259351b1f37eb3837b8c7ac045bc3
Author: cfillion <cfillion@users.noreply.github.com>
Date: Mon, 4 Dec 2017 10:52:37 -0500
woops, fix progress dialog on macOS (broken in 98030aa)
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/progress.cpp b/src/progress.cpp
@@ -58,8 +58,10 @@ void Progress::onCommand(const int id, int)
void Progress::onTimer(const int id)
{
+#ifdef _WIN32
if(!IsWindowEnabled(handle()))
return;
+#endif
show();
stopTimer(id);