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