修复了小游戏坑位的间隙太小

This commit is contained in:
fengshuo
2022-03-17 15:53:55 +08:00
committed by chenguilong
parent e01532c7ab
commit 14fc487489
2 changed files with 3 additions and 21 deletions

View File

@@ -295,7 +295,7 @@ UIKIT_EXTERN NSString * const kRoomMiniNotificationKey;
if (self.roomInfo.type == RoomType_MiniGame) {
[self.stageView mas_remakeConstraints:^(MASConstraintMaker *make) {
make.left.right.mas_equalTo(self.view);
make.top.mas_equalTo(self.roomHeaderView.mas_bottom).offset(23 + 4);
make.top.mas_equalTo(self.roomHeaderView.mas_bottom).offset(26 + 4);
make.height.mas_equalTo(self.stageView.hightForStageView);
}];
@@ -780,7 +780,6 @@ UIKIT_EXTERN NSString * const kRoomMiniNotificationKey;
- (void)onMicroQueueUpdate:(NSMutableDictionary<NSString *,MicroQueueModel *> *)queue {
[self.menuContainerView onMicroQueueUpdate:queue];
[self.functionView onRoomUpdate];
[self.functionView onMicroQueueUpdate:queue];
}
- (void)onMicroGiftValueUpdate:(NSDictionary *)data {