FloatingPanel Linear Brush
Posted: Thu Feb 28, 2019 7:46 am
I am changing the background on both Floating panel and Floating_atFront and i get a border bottom when i have not set a border bottom? Am doing the linear brush wrong for these? I think i see that the background is being applied twice to the title and creating what looks like the border bottom.
Code: Select all
Define_Com Class(#PRIM_THM.DrawStyle) Name(#FloatingPanel_Title) Style(#FloatingPanel_TitleStyle)
Define_Com Class(#PRIM_VS.Style) Name(#FloatingPanel_TitleStyle) Backgroundbrush(#LinearBrush1)
Define_Com Class(#PRIM_VS.LinearBrush) Name(#LinearBrush1) Colors(#BrushColors1)
Define_Com Class(#PRIM_VS.BrushColors) Name(#BrushColors1)
Define_Com Class(#PRIM_VS.BrushColor) Name(#BrushColor1) Color(255:255:255) Parent(#BrushColors1)
Define_Com Class(#PRIM_VS.BrushColor) Name(#BrushColor2) At(100) Color(220:221:222) Parent(#BrushColors1)
Define_Com Class(#PRIM_THM.DrawStyle) Name(#FloatingPanel_AtFrontTitle) Style(#FloatingPanel_AtFrontTitleStyle)
Define_Com Class(#PRIM_VS.Style) Name(#FloatingPanel_AtFrontTitleStyle) Backgroundbrush(#LinearBrush2)
Define_Com Class(#PRIM_VS.LinearBrush) Name(#LinearBrush2) Colors(#BrushColors2)
Define_Com Class(#PRIM_VS.BrushColors) Name(#BrushColors2)
Define_Com Class(#PRIM_VS.BrushColor) Name(#BrushColor3) Color(255:255:255) Parent(#BrushColors2)
Define_Com Class(#PRIM_VS.BrushColor) Name(#BrushColor4) At(100) Color(147:149:152) Parent(#BrushColors2)