We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68c2725 commit fa6e841Copy full SHA for fa6e841
src/qt/guiutil.h
@@ -230,19 +230,7 @@ namespace GUIUtil
230
void mouseReleaseEvent(QMouseEvent *event);
231
};
232
233
-#if defined(Q_OS_MAC)
234
- // workaround for Qt OSX Bug:
235
- // https://bugreports.qt-project.org/browse/QTBUG-15631
236
- // QProgressBar uses around 10% CPU even when app is in background
237
- class ProgressBar : public ClickableProgressBar
238
- {
239
- bool event(QEvent *e) {
240
- return (e->type() != QEvent::StyleAnimationUpdate) ? QProgressBar::event(e) : false;
241
- }
242
- };
243
-#else
244
typedef ClickableProgressBar ProgressBar;
245
-#endif
246
247
} // namespace GUIUtil
248
0 commit comments