Skip to content

Commit 09bbf8d

Browse files
committed
Various fixes
1 parent c0ae0f8 commit 09bbf8d

File tree

6 files changed

+177
-165
lines changed

6 files changed

+177
-165
lines changed

Telegram/Telegram-iOS/en.lproj/Localizable.strings

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15208,6 +15208,7 @@ Error: %8$@";
1520815208
"Gift.Auction.Stars_any" = "%@ Stars";
1520915209

1521015210
"Gift.AuctionBid.Title" = "Place a Bid";
15211+
"Gift.AuctionBid.Subtitle" = "Top %@ bidders will win";
1521115212
"Gift.AuctionBid.MinimumBid" = "minimum bid";
1521215213
"Gift.AuctionBid.UntilNext" = "until next round";
1521315214
"Gift.AuctionBid.Left" = "left";

submodules/TelegramUI/Components/Chat/ChatMessageWebpageBubbleContentNode/Sources/ChatMessageWebpageBubbleContentNode.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ public final class ChatMessageWebpageBubbleContentNode: ChatMessageBubbleContent
499499
break
500500
}
501501
}
502-
title = item.presentationData.strings.Chat_Auction
502+
subtitle = NSAttributedString(string: item.presentationData.strings.Chat_Auction, font: titleFont)
503503
text = nil
504504
actionTitle = hasEnded ? item.presentationData.strings.Chat_Auction_ViewResults : item.presentationData.strings.Chat_Auction_Join
505505
actionIcon = !hasEnded ? .bid : nil

submodules/TelegramUI/Components/Gifts/GiftSetupScreen/Sources/RemainingCountComponent.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public class RemainingCountComponent: Component {
148148
self.container.layer.addSublayer(self.inactiveBackground)
149149
self.container.addSubview(self.activeContainer)
150150
self.activeContainer.layer.addSublayer(self.activeBackground)
151-
self.activeContainer.addSubview(self.activeChromeView)
151+
//self.activeContainer.addSubview(self.activeChromeView)
152152

153153
self.activeChromeView.layer.compositingFilter = "overlayBlendMode"
154154
self.activeChromeView.alpha = 0.8

submodules/TelegramUI/Components/Gifts/GiftViewScreen/Sources/GiftAuctionActiveBidsScreen.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,6 @@ private final class GiftAuctionActiveBidsScreenComponent: Component {
331331
guard let self, let component = self.component, let auction, let controller = environment.controller(), let navigationController = controller.navigationController as? NavigationController else {
332332
return
333333
}
334-
controller.dismiss()
335-
336334
let bidController = component.context.sharedContext.makeGiftAuctionBidScreen(context: component.context, toPeerId: auction.currentBidPeerId ?? component.context.account.peerId, text: nil, entities: nil, hideName: false, auctionContext: auction)
337335
navigationController.pushViewController(bidController)
338336
})

0 commit comments

Comments
 (0)