RibbonTabBar: Fix border bug in modern style.

This commit is contained in:
Mentalflow 2024-06-23 12:50:47 +08:00
parent 8a88080f4d
commit 5fa500de8d
Signed by: Mentalflow
GPG Key ID: 5AE68D4401A2EE71
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ Item{
property bool showSettingsBtn: true
property alias count: bar.count
property bool blurEnabled: typeof Window.window.viewItems !== "undefined"
property real modernMargin: modernStyle ? 10 : 0
property real modernMargin: modernStyle && ! folded ? 10 : 0
signal settingsBtnClicked()

View File

@ -26,7 +26,7 @@ Item{
property bool showSettingsBtn: true
property alias count: bar.count
property bool blurEnabled: typeof Window.window.viewItems !== "undefined"
property real modernMargin: modernStyle ? 10 : 0
property real modernMargin: modernStyle && ! folded ? 10 : 0
signal settingsBtnClicked()