feature(font): Change the default GTK application font size from 10 to 9

- 将应用程序字体默认大小由10改为9

Related #13006
This commit is contained in:
luoqing 2023-08-22 09:22:19 +08:00
parent 30e76a5096
commit 8771fcf983
2 changed files with 37 additions and 1 deletions

View File

@ -0,0 +1,32 @@
From 56e32fdfbba6226ce47098b71451adbdec208cd1 Mon Sep 17 00:00:00 2001
From: luoqing <luoqing@kylinsec.com.cn>
Date: Mon, 21 Aug 2023 16:20:08 +0800
Subject: [PATCH] feature(font): Change the default GTK application font size
from 10 to 9
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- 将应用程序字体默认大小由10改为9
Related #13006
---
data/schemas/com.kylinsec.kiran.xsettings.gschema.xml.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/data/schemas/com.kylinsec.kiran.xsettings.gschema.xml.in b/data/schemas/com.kylinsec.kiran.xsettings.gschema.xml.in
index 142f162..12b486a 100644
--- a/data/schemas/com.kylinsec.kiran.xsettings.gschema.xml.in
+++ b/data/schemas/com.kylinsec.kiran.xsettings.gschema.xml.in
@@ -70,7 +70,7 @@
<description>Size of the cursor referenced by cursor_theme.</description>
</key>
<key name="gtk-font-name" type="s">
- <default>'Noto Sans CJK SC 10'</default>
+ <default>'Noto Sans CJK SC 9'</default>
<description>Name of default font to use.</description>
</key>
<key name="gtk-key-theme-name" type="s">
--
2.33.0

View File

@ -1,6 +1,6 @@
Name: kiran-cc-daemon
Version: 2.5.1
Release: 21
Release: 22
Summary: DBus daemon for Kiran Desktop
License: MulanPSL-2.0
@ -25,6 +25,7 @@ Patch0016: 0001-fix-xsettings-Fix-the-problem-that-variable-serial-i.patch
Patch0017: 0001-fix-accounts-Fix-user-icon-file-display-while-change.patch
Patch0018: 0001-fix-keybindings-Remove-power-and-logout-invalid-key-.patch
Patch0019: 0001-fix-power-Change-poweroff-action-from-key-press-to-r.patch
Patch0020: 0001-feature-font-Change-the-default-GTK-application-font.patch
BuildRequires: cmake >= 3.2
BuildRequires: pkgconfig(glibmm-2.4)
@ -194,6 +195,9 @@ glib-compile-schemas /usr/share/glib-2.0/schemas &> /dev/nulls || :
%{_libdir}/pkgconfig/kiran-cc-daemon.pc
%changelog
* Tue Aug 22 2023 luoqing <luoqing@kylinsec.com.cn> - 2.5.1-22
- KYOS-B: Change the default GTK application font size from 10 to 9 (#13006)
* Mon Aug 21 2023 meizhigang <meizhigang@kylinsec.com.cn> - 2.5.1-21
- KYOS-B: Change poweroff action from key press to release (#11422)