Fix duplicate alt-D accelerator on root account screen

This commit is contained in:
majianhan 2024-12-04 15:47:29 +08:00
parent e706cb7eeb
commit 707f1af75d
2 changed files with 33 additions and 1 deletions

View File

@ -1,7 +1,7 @@
%define _empty_manifest_terminate_build 0
Name: anaconda
Version: 36.16.5
Release: 43
Release: 44
Summary: Graphical system installer
License: GPLv2+ and MIT
URL: http://fedoraproject.org/wiki/Anaconda
@ -71,6 +71,7 @@ Patch9027: disable-disk-encryption.patch
Patch9028: bugfix-set-metacity-with-LIBGL_KOPPER_DISABLE-as-yes.patch
Patch9029: bugfix-Fix-abnormal-display-of-network-configuration-interface.patch
Patch9030: bugfix-fix-duplicate-alt-D-accelerator-on-root-account-screen.patch
%define dasbusver 1.3
%define dbusver 1.2.3
@ -327,6 +328,12 @@ update-desktop-database &> /dev/null || :
%{_prefix}/libexec/anaconda/dd_*
%changelog
* Mon Nov 26 2024 majianhan <majianhan@kylinos.cn> - 36.16.5-44
- Type:bugfix
- ID:NA
- SUG:NA
- DESC: Fix duplicate alt-D accelerator on root account screen
* Mon Nov 25 2024 shenzhongwei <shenzhongwei@kylinos.cn> - 36.16.5-43
- Type:bugfix
- ID:NA

View File

@ -0,0 +1,25 @@
From 92bb076a9f9e5bdfb8d1c2691ef6009bba4fbbe4 Mon Sep 17 00:00:00 2001
From: majianhan <majianhan@kylinos.cn>
Date: Mon, 25 Nov 2024 11:12:04 +0800
Subject: [PATCH] Fix duplicate alt-D accelerator on root account screen
---
pyanaconda/ui/gui/spokes/root_password.glade | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyanaconda/ui/gui/spokes/root_password.glade b/pyanaconda/ui/gui/spokes/root_password.glade
index 53bc90c..e90f301 100644
--- a/pyanaconda/ui/gui/spokes/root_password.glade
+++ b/pyanaconda/ui/gui/spokes/root_password.glade
@@ -94,7 +94,7 @@ The root user (also known as super user) has complete access to the entire syste
<object class="GtkAccelLabel" id="lbDisableBold">
<property name="visible">True</property>
<property name="can_focus">False</property>
- <property name="label" translatable="yes" context="GUI|Password">_Disable root account</property>
+ <property name="label" translatable="yes" context="GUI|Password">D_isable root account</property>
<property name="use_underline">True</property>
<property name="xalign">0</property>
<property name="accel_widget">disable_root_radio</property>
--
2.43.0