From f2682033ca60d7caf8e1af6be906b3f431e1ad5f Mon Sep 17 00:00:00 2001 From: sun_hai_10 Date: Wed, 21 Sep 2022 11:19:20 +0800 Subject: [PATCH] sync from 20.03 sp3, patch si by yue-yuankun --- anaconda.spec | 9 ++++++- ...loading-progress-bar-does-not-rotate.patch | 25 +++++++++++++++++++ 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 bugfix-Solve-the-problem-that-the-circular-loading-progress-bar-does-not-rotate.patch diff --git a/anaconda.spec b/anaconda.spec index bce7cd0..1a5391b 100644 --- a/anaconda.spec +++ b/anaconda.spec @@ -1,7 +1,7 @@ %define _empty_manifest_terminate_build 0 Name: anaconda Version: 33.19 -Release: 46 +Release: 47 Summary: Graphical system installer License: GPLv2+ and MIT URL: http://fedoraproject.org/wiki/Anaconda @@ -126,6 +126,7 @@ Patch6081: bugfix-change-the-startup-mode-of-do_transaction-sub-proces.patch Patch6082: Support-configuration-of-additional-boot-arguments.patch Patch6083: backport-revert-Set-default-entry-to-the-BLS-id-instead-of-th.patch +Patch6084: bugfix-Solve-the-problem-that-the-circular-loading-progress-bar-does-not-rotate.patch %define dbusver 1.2.3 %define dnfver 3.6.0 @@ -365,6 +366,12 @@ update-desktop-database &> /dev/null || : %{_prefix}/libexec/anaconda/dd_* %changelog +* Wed Sep 21 2022 sunhai - 33.19-47 +- Type:bugfix +- CVE:NA +- SUG:NA +- DESC:solve the problem that the circular loading progress bar does not rotate + * Tue Aug 23 2022 zhangqiumiao - 33.19-46 - Type:bugfix - CVE:NA diff --git a/bugfix-Solve-the-problem-that-the-circular-loading-progress-bar-does-not-rotate.patch b/bugfix-Solve-the-problem-that-the-circular-loading-progress-bar-does-not-rotate.patch new file mode 100644 index 0000000..b9ea22e --- /dev/null +++ b/bugfix-Solve-the-problem-that-the-circular-loading-progress-bar-does-not-rotate.patch @@ -0,0 +1,25 @@ +From ccc28e983cd2c1f1f02fd00b9b1659fb572bac1b Mon Sep 17 00:00:00 2001 +From: yueyuankun +Date: Tue, 23 Aug 2022 15:53:18 +0800 +Subject: [PATCH] Solve the problem that sometimes the circular + loading progress bar does not rotate + +--- + pyanaconda/ui/gui/spokes/installation_progress.py | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/pyanaconda/ui/gui/spokes/installation_progress.py b/pyanaconda/ui/gui/spokes/installation_progress.py +index 0de742b..5ed3424 100644 +--- a/pyanaconda/ui/gui/spokes/installation_progress.py ++++ b/pyanaconda/ui/gui/spokes/installation_progress.py +@@ -85,6 +85,7 @@ class ProgressSpoke(StandaloneSpoke): + + if code == progressQ.PROGRESS_CODE_INIT: + self._init_progress_bar(args[0]) ++ gtk_call_once(self._spinner.start) + elif code == progressQ.PROGRESS_CODE_STEP: + self._step_progress_bar() + elif code == progressQ.PROGRESS_CODE_MESSAGE: +-- +2.27.0 +