1
0
зеркало из https://github.com/Burrit0z/kai synced 2025-07-02 01:56:47 +00:00
Этот коммит содержится в:
Burrit0z
2020-06-02 20:26:02 -04:00
родитель a2e7958399
Коммит 1aea9e9541

Просмотреть файл

@ -134,11 +134,15 @@ long long lastPercentage;
} else {
int height = (self.number * (bannerHeight + spacing));
if(kaiAlign==0 && [self.superview.subviews count]>1) {
height = (self.number * (bannerHeight + spacing)) - spacing;
if(kaiAlign==0) {
height = (self.number * (bannerHeight + spacing));
} else {
height = bannerHeight + spacing;
}
if([self.superview.subviews count]>1) {
height = height - spacing;
}
self.heightConstraint.constant = height;
self.stack.heightConstraint.constant = height;