mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-06-01 10:05:30 +00:00
Fixed a bunch of border.width who used to have inverted logic (math.min vs max)
This commit is contained in:
@@ -64,8 +64,8 @@ PanelWindow {
|
||||
clip: true
|
||||
color: Colors.backgroundSecondary
|
||||
radius: Style.radiusMedium * scaling
|
||||
border.color: Colors.backgroundTertiary
|
||||
border.width: Math.min(1, Style.borderThin * scaling)
|
||||
border.color: Colors.accentTertiary
|
||||
border.width: Math.max(1, Style.borderThin * scaling)
|
||||
|
||||
// Animation properties
|
||||
property real scaleValue: 0.8
|
||||
|
||||
Reference in New Issue
Block a user