!7 fixed bug#131074 虚拟机使用openkylin,系统音量固定在17%,调节音量会回弹到17%
Merge pull request !7 from pengziping/openkylin/yangtze
This commit is contained in:
parent
63e58377fb
commit
17400ef8e6
|
@ -1,3 +1,9 @@
|
|||
ukui-media (3.1.0.2022+0310-ok2~0812) yangtze; urgency=medium
|
||||
|
||||
* close-cd #131074 虚拟机使用openkylin,系统音量固定在17%,调节音量会回弹到17%
|
||||
|
||||
-- pengziping <pengziping@pengziping.kylinos.cn> Fri, 12 Aug 2022 09:53:24 +0800
|
||||
|
||||
ukui-media (3.1.0.2022+0310-ok2~0725) yangtze; urgency=medium
|
||||
|
||||
* close-cd #130430 音效主题-寻光音效未汉化
|
||||
|
|
|
@ -0,0 +1,31 @@
|
|||
From: pengziping <pengziping@kylinos.cn>
|
||||
Date: Fri, 12 Aug 2022 02:01:56 +0000
|
||||
Subject: =?utf-8?b?ITcgZml4ZWQgYnVnIzEzMTA3NCDomZrmi5/mnLrkvb/nlKhvcGVua3ls?=
|
||||
=?utf-8?b?aW7vvIzns7vnu5/pn7Pph4/lm7rlrprlnKgxNyXvvIzosIPoioLpn7Pph4/kvJo=?=
|
||||
=?utf-8?b?5Zue5by55YiwMTclIE1lcmdlIHB1bGwgcmVxdWVzdCAhNyBmcm9tIHBlbmd6aXBp?=
|
||||
=?utf-8?b?bmcvb3Blbmt5bGluL3lhbmd0emU=?=
|
||||
|
||||
---
|
||||
ukui-volume-control-applet-qt/ukmedia_custom_sound.cpp | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/ukui-volume-control-applet-qt/ukmedia_custom_sound.cpp b/ukui-volume-control-applet-qt/ukmedia_custom_sound.cpp
|
||||
index cec7267..28b83f4 100644
|
||||
--- a/ukui-volume-control-applet-qt/ukmedia_custom_sound.cpp
|
||||
+++ b/ukui-volume-control-applet-qt/ukmedia_custom_sound.cpp
|
||||
@@ -92,6 +92,7 @@ bool CustomSound::isExist(QString nodeName)
|
||||
nodeName.remove(")");
|
||||
nodeName.remove("[");
|
||||
nodeName.remove("]");
|
||||
+ nodeName.remove(";");
|
||||
if(nodeName != "" && nodeName.at(0)>='0' && nodeName.at(0)<='9'){
|
||||
nodeName = "Audio_"+nodeName;
|
||||
}
|
||||
@@ -139,6 +140,7 @@ int CustomSound::addXmlNode(QString nodeName, bool initState)
|
||||
nodeName.remove(")");
|
||||
nodeName.remove("[");
|
||||
nodeName.remove("]");
|
||||
+ nodeName.remove(";");
|
||||
if(nodeName != "" && nodeName.at(0)>='0' && nodeName.at(0)<='9'){
|
||||
nodeName = "Audio_"+nodeName;
|
||||
}
|
|
@ -3,3 +3,4 @@
|
|||
0003-3-fix-bug-127835.patch
|
||||
0004-fixed-bug-125183-osd.patch
|
||||
0005-fix-bug-130430.patch
|
||||
0006-7-fixed-bug-131074-openkylin-17-17.patch
|
||||
|
|
Loading…
Reference in New Issue