From c934aefdc6abe06775ca65bb5b88d3984002f627 Mon Sep 17 00:00:00 2001 From: SimplestStudio Date: Wed, 27 Sep 2023 14:01:15 +0300 Subject: [PATCH] [win-linux] fix font weight in window title --- win-linux/res/styles/editor.qss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win-linux/res/styles/editor.qss b/win-linux/res/styles/editor.qss index 31e7ec879..cf6accba1 100644 --- a/win-linux/res/styles/editor.qss +++ b/win-linux/res/styles/editor.qss @@ -1,7 +1,7 @@ #mainPanel {background-color: %1;} #box-title-tools {background-color: %1;} #box-title-tools QLabel {font-family: "Arial", "Helvetica", "Helvetica Neue", sans-serif;} -#labelTitle {color: #444; font-weight: bold;} +#labelTitle {color: #444; font-weight: normal;} #iconuser {color: %1; background: #d9ffffff; font-size: 10px;} QPushButton[act=tool]:hover {background-color: rgba(0,0,0,20%);} QPushButton#toolButtonClose:hover {background-color: #d42b2b;}