feat: refactor bar spacing functions to use dedicated functions
This commit is contained in:
@@ -7,7 +7,7 @@ import "../../../config"
|
||||
|
||||
Row { // Workspace Row
|
||||
id: trayRow
|
||||
spacing: Config.small_spacing_fun(height)
|
||||
spacing: Config.bar_small_bar_spacing_fun(height)
|
||||
|
||||
Repeater {
|
||||
model: SystemTray.items
|
||||
@@ -19,8 +19,8 @@ Row { // Workspace Row
|
||||
|
||||
Rectangle { //trayItem
|
||||
id: trayItem
|
||||
width: iconImage.width + Config.spacing_fun(bar.height)
|
||||
height: iconImage.height + Config.spacing_fun(bar.height)
|
||||
width: iconImage.width + Config.bar_spacing_fun(bar.height)
|
||||
height: iconImage.height + Config.bar_spacing_fun(bar.height)
|
||||
radius: Config.radius_fun(trayRow.height)
|
||||
color: trayArea.containsMouse ? Colors.tertiaryContainer
|
||||
: modelData.active ? Colors.primaryContainer
|
||||
|
||||
Reference in New Issue
Block a user