This commit is contained in:
ItsLemmy
2025-10-30 23:46:00 -04:00
parent 84e058fb07
commit d4be3a2cc2
2 changed files with 64 additions and 60 deletions
+8 -4
View File
@@ -218,7 +218,8 @@ Loader {
// Top-left corner
topLeftInverted: {
if (!attachedToBar) return false
if (!attachedToBar)
return false
// Inverted if panel is anchored to top edge (bar is at top)
if (effectivePanelAnchorTop)
@@ -232,7 +233,8 @@ Loader {
// Top-right corner
topRightInverted: {
if (!attachedToBar) return false
if (!attachedToBar)
return false
// Inverted if panel is anchored to top edge (bar is at top)
if (effectivePanelAnchorTop)
@@ -246,7 +248,8 @@ Loader {
// Bottom-left corner
bottomLeftInverted: {
if (!attachedToBar) return false
if (!attachedToBar)
return false
// Inverted if panel is anchored to bottom edge (bar is at bottom)
if (effectivePanelAnchorBottom)
@@ -260,7 +263,8 @@ Loader {
// Bottom-right corner
bottomRightInverted: {
if (!attachedToBar) return false
if (!attachedToBar)
return false
// Inverted if panel is anchored to bottom edge (bar is at bottom)
if (effectivePanelAnchorBottom)