From 40ee7a40ffb64fce73b1f65c7350083d67269059 Mon Sep 17 00:00:00 2001 From: chenxi Date: Fri, 21 Apr 2023 12:00:42 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BA=A2=E7=82=B9=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/ui/main_city/component/main_comp.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/app/ui/main_city/component/main_comp.lua b/lua/app/ui/main_city/component/main_comp.lua index 36ab1e3f..94b303a4 100644 --- a/lua/app/ui/main_city/component/main_comp.lua +++ b/lua/app/ui/main_city/component/main_comp.lua @@ -78,13 +78,13 @@ function MainComp:refreshChapter(force) end local isHaveLeftRewards = DataManager.ChapterData:getIsHaveRewardsBeforeId(chapterId) if isHaveLeftRewards then - self.leftArrow:addRedPoint(16, 28, 0.6) + self.leftArrow:addRedPoint(-20, 28, 0.5) else self.leftArrow:removeRedPoint() end local isHaveRightRewards = DataManager.ChapterData:getIsHaveRewardsAfterId(chapterId) if isHaveRightRewards then - self.rightArrow:addRedPoint(-10, 28, 0.6) + self.rightArrow:addRedPoint(20, 28, 0.5) else self.rightArrow:removeRedPoint() end