RibbonMessageBarGroup: Fix the top radius when tabbar is folded in modern style.
This commit is contained in:
parent
a71bb911c8
commit
5c1ce7c32c
|
@ -57,6 +57,8 @@ RibbonBlur {
|
||||||
}
|
}
|
||||||
color: folded ? RibbonTheme.isDarkMode ? "black" : "white" : "transparent"
|
color: folded ? RibbonTheme.isDarkMode ? "black" : "white" : "transparent"
|
||||||
height: control.implicitHeight - (folded ? handler.height : 0)
|
height: control.implicitHeight - (folded ? handler.height : 0)
|
||||||
|
topLeftRadius: RibbonTheme.modernStyle && RibbonWindow.window.tabBar.folded ? 10 : 0
|
||||||
|
topRightRadius: topLeftRadius
|
||||||
bottomLeftRadius: RibbonTheme.modernStyle && folded ? 10 : 0
|
bottomLeftRadius: RibbonTheme.modernStyle && folded ? 10 : 0
|
||||||
bottomRightRadius: bottomLeftRadius
|
bottomRightRadius: bottomLeftRadius
|
||||||
ListView{
|
ListView{
|
||||||
|
|
|
@ -57,6 +57,8 @@ RibbonBlur {
|
||||||
}
|
}
|
||||||
color: folded ? RibbonTheme.isDarkMode ? "black" : "white" : "transparent"
|
color: folded ? RibbonTheme.isDarkMode ? "black" : "white" : "transparent"
|
||||||
height: control.implicitHeight - (folded ? handler.height : 0)
|
height: control.implicitHeight - (folded ? handler.height : 0)
|
||||||
|
topLeftRadius: RibbonTheme.modernStyle && RibbonWindow.window.tabBar.folded ? 10 : 0
|
||||||
|
topRightRadius: topLeftRadius
|
||||||
bottomLeftRadius: RibbonTheme.modernStyle && folded ? 10 : 0
|
bottomLeftRadius: RibbonTheme.modernStyle && folded ? 10 : 0
|
||||||
bottomRightRadius: bottomLeftRadius
|
bottomRightRadius: bottomLeftRadius
|
||||||
ListView{
|
ListView{
|
||||||
|
|
Loading…
Reference in New Issue