From 928da15b8e2d469bcfc951d88a1e4fcccaa19603 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 10 Sep 2010 17:25:41 +0000 Subject: [PATCH] Use determinate mode in native wxMSW wxProgressDialog by default. The dialog was created in indeterminate ("marquee") mode for some reason. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65503 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/progdlg.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/msw/progdlg.cpp b/src/msw/progdlg.cpp index 0167b40762..4fb41ac65f 100644 --- a/src/msw/progdlg.cpp +++ b/src/msw/progdlg.cpp @@ -750,9 +750,7 @@ void* wxProgressDialogTaskRunner::Entry() m_sharedData.m_labelCancel ); } - tdc.dwFlags |= TDF_CALLBACK_TIMER - | TDF_SHOW_PROGRESS_BAR - | TDF_SHOW_MARQUEE_PROGRESS_BAR; + tdc.dwFlags |= TDF_CALLBACK_TIMER | TDF_SHOW_PROGRESS_BAR; if ( !m_sharedData.m_expandedInformation.empty() ) { -- 2.45.2