StackableEdge: Fix margin for upper (S) variant

This commit is contained in:
Florian Festi 2019-11-04 17:05:18 +01:00
parent 4ac46840d2
commit 83b5363bc8
1 changed files with 1 additions and 1 deletions

View File

@ -826,7 +826,7 @@ class StackableEdge(BaseEdge):
return self._height() if self.bottom else 0
def margin(self):
return 0 if self.bottom else self._height()
return 0 if self.bottom else self.settings.height
class StackableEdgeTop(StackableEdge):