0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-02 09:46:52 -05:00

qt, macos: Fix GUIUtil::PolishProgressDialog bug

QProgressDialog shows itself if the estimated time an operation will
take is beyond the minimumDuration value.

Direct call show() breaks that behavior on macos.
This commit is contained in:
Hennadii Stepanov 2021-05-22 21:20:06 +03:00
parent be4171679b
commit 75850106ae
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

View file

@ -818,7 +818,6 @@ void PolishProgressDialog(QProgressDialog* dialog)
// Workaround for macOS-only Qt bug; see: QTBUG-65750, QTBUG-70357.
const int margin = TextWidth(dialog->fontMetrics(), ("X"));
dialog->resize(dialog->width() + 2 * margin, dialog->height());
dialog->show();
#else
Q_UNUSED(dialog);
#endif