diff --git a/CMakeLists.txt b/CMakeLists.txt --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ set(PROJECT_VERSION_MAJOR 5) set(QT_MIN_VERSION "5.12.0") -set(KF5_MIN_VERSION "5.58.0") +set(KF5_MIN_VERSION "5.61.0") find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE) diff --git a/src/bugzillaintegration/ui/assistantpage_bugzilla_version.ui b/src/bugzillaintegration/ui/assistantpage_bugzilla_version.ui --- a/src/bugzillaintegration/ui/assistantpage_bugzilla_version.ui +++ b/src/bugzillaintegration/ui/assistantpage_bugzilla_version.ui @@ -28,15 +28,12 @@ - - - 0 - - - 0 - - - -1 + + + + 64 + 64 + @@ -150,6 +147,13 @@ + + + KBusyIndicatorWidget + QWidget +
kbusyindicatorwidget.h
+
+
diff --git a/src/statuswidget.h b/src/statuswidget.h --- a/src/statuswidget.h +++ b/src/statuswidget.h @@ -25,7 +25,7 @@ #include class WrapLabel; -class KPixmapSequenceWidget; +class KBusyIndicatorWidget; class QHideEvent; class StatusWidget: public QStackedWidget @@ -48,7 +48,7 @@ WrapLabel * m_statusLabel; - KPixmapSequenceWidget * m_throbberWidget; + KBusyIndicatorWidget *m_throbberWidget; WrapLabel * m_busyLabel; QWidget * m_statusPage; diff --git a/src/statuswidget.cpp b/src/statuswidget.cpp --- a/src/statuswidget.cpp +++ b/src/statuswidget.cpp @@ -22,8 +22,7 @@ #include #include -#include -#include +#include StatusWidget::StatusWidget(QWidget * parent) : QStackedWidget(parent), @@ -52,8 +51,7 @@ statusLayout->addWidget(m_statusLabel); //Busy widget - m_throbberWidget = new KPixmapSequenceWidget(); - m_throbberWidget->setSequence(KPixmapSequence(QStringLiteral("process-working"), 22)); + m_throbberWidget = new KBusyIndicatorWidget(this); m_throbberWidget->setSizePolicy(QSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed)); m_busyLabel = new WrapLabel();