mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
Various fixes
This commit is contained in:
parent
c9c4d78e30
commit
751e20043f
1 changed files with 5 additions and 1 deletions
|
|
@ -447,7 +447,11 @@ final class StarsTransactionsScreenComponent: Component {
|
|||
let sideInsets: CGFloat = environment.safeInsets.left + environment.safeInsets.right + 16.0 * 2.0
|
||||
let bottomInset: CGFloat = environment.safeInsets.bottom
|
||||
|
||||
contentHeight += environment.statusBarHeight
|
||||
if environment.statusBarHeight > 0.0 {
|
||||
contentHeight += environment.statusBarHeight
|
||||
} else {
|
||||
contentHeight += 12.0
|
||||
}
|
||||
|
||||
let starTransition: ComponentTransition = .immediate
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue