From 96282c43903ea5aefe11b04efa0e9b4bd9be2493 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 29 May 2025 22:13:18 +0200 Subject: [PATCH] fix weird bold font in some places --- .config/quickshell/modules/sidebarLeft/AiChat.qml | 1 - .config/quickshell/modules/sidebarLeft/Anime.qml | 1 - .config/quickshell/modules/sidebarLeft/aiChat/AiMessage.qml | 1 - .config/quickshell/modules/sidebarLeft/anime/BooruResponse.qml | 1 - .../modules/sidebarRight/calendar/CalendarDayButton.qml | 2 +- 5 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.config/quickshell/modules/sidebarLeft/AiChat.qml b/.config/quickshell/modules/sidebarLeft/AiChat.qml index 8bd6b683..a20bbb23 100644 --- a/.config/quickshell/modules/sidebarLeft/AiChat.qml +++ b/.config/quickshell/modules/sidebarLeft/AiChat.qml @@ -487,7 +487,6 @@ int main(int argc, char* argv[]) { StyledText { id: providerName font.pixelSize: Appearance.font.pixelSize.small - font.weight: Font.DemiBold color: Appearance.m3colors.m3onSurface elide: Text.ElideRight text: Ai.getModel().name diff --git a/.config/quickshell/modules/sidebarLeft/Anime.qml b/.config/quickshell/modules/sidebarLeft/Anime.qml index 3c0e6b63..1bfb210c 100644 --- a/.config/quickshell/modules/sidebarLeft/Anime.qml +++ b/.config/quickshell/modules/sidebarLeft/Anime.qml @@ -547,7 +547,6 @@ Item { StyledText { id: providerName font.pixelSize: Appearance.font.pixelSize.small - font.weight: Font.DemiBold color: Appearance.m3colors.m3onSurface text: Booru.providers[Booru.currentProvider].name } diff --git a/.config/quickshell/modules/sidebarLeft/aiChat/AiMessage.qml b/.config/quickshell/modules/sidebarLeft/aiChat/AiMessage.qml index 1122406a..24f4a5b0 100644 --- a/.config/quickshell/modules/sidebarLeft/aiChat/AiMessage.qml +++ b/.config/quickshell/modules/sidebarLeft/aiChat/AiMessage.qml @@ -146,7 +146,6 @@ Rectangle { Layout.fillWidth: true elide: Text.ElideRight font.pixelSize: Appearance.font.pixelSize.normal - font.weight: Font.DemiBold color: Appearance.m3colors.m3onSecondaryContainer text: messageData?.role == 'assistant' ? Ai.models[messageData?.model].name : (messageData?.role == 'user' && SystemInfo.username) ? SystemInfo.username : diff --git a/.config/quickshell/modules/sidebarLeft/anime/BooruResponse.qml b/.config/quickshell/modules/sidebarLeft/anime/BooruResponse.qml index f1bc69fe..1af6c91f 100644 --- a/.config/quickshell/modules/sidebarLeft/anime/BooruResponse.qml +++ b/.config/quickshell/modules/sidebarLeft/anime/BooruResponse.qml @@ -77,7 +77,6 @@ Rectangle { id: providerName anchors.centerIn: parent font.pixelSize: Appearance.font.pixelSize.large - font.weight: Font.DemiBold color: Appearance.m3colors.m3onSecondaryContainer text: Booru.providers[root.responseData.provider].name } diff --git a/.config/quickshell/modules/sidebarRight/calendar/CalendarDayButton.qml b/.config/quickshell/modules/sidebarRight/calendar/CalendarDayButton.qml index d5989c84..88de9202 100644 --- a/.config/quickshell/modules/sidebarRight/calendar/CalendarDayButton.qml +++ b/.config/quickshell/modules/sidebarRight/calendar/CalendarDayButton.qml @@ -23,7 +23,7 @@ RippleButton { anchors.fill: parent text: day horizontalAlignment: Text.AlignHCenter - font.weight: bold ? Font.Bold : isToday == -1 ? Font.Normal : Font.DemiBold + font.weight: bold ? Font.DemiBold : Font.Normal color: (isToday == 1) ? Appearance.m3colors.m3onPrimary : (isToday == 0) ? Appearance.colors.colOnLayer1 : Appearance.m3colors.m3outlineVariant