|
@@ -610,12 +610,12 @@ public class FashionShowEditPage : Regist
|
|
|
UpdateTotalCost(true);
|
|
|
if (TotalCoin.Value > Manager.Coin)
|
|
|
{
|
|
|
- Bubble.Show(Language.GetStr(LanguageLabel.Common__ShortCoin));
|
|
|
+ Bubble.Show(null, Language.GetStr(LanguageLabel.Common__ShortCoin));
|
|
|
return;
|
|
|
}
|
|
|
if (TotalDiamond.Value > Manager.Diamond)
|
|
|
{
|
|
|
- Bubble.Show(Language.GetStr(LanguageLabel.Common__ShortDiamond));
|
|
|
+ Bubble.Show(null, Language.GetStr(LanguageLabel.Common__ShortDiamond));
|
|
|
return;
|
|
|
}
|
|
|
ShowBuyTip();
|
|
@@ -623,7 +623,7 @@ public class FashionShowEditPage : Regist
|
|
|
|
|
|
private static void ShowBuyTip()
|
|
|
{
|
|
|
- Bubble.Show(Language.GetStr(LanguageLabel.UI__Pi_BuyAllTip), null, null, null,
|
|
|
+ Bubble.Show(null, Language.GetStr(LanguageLabel.UI__Pi_BuyAllTip), null, null,
|
|
|
() =>
|
|
|
{
|
|
|
Manager.Pay("", TotalCoin.Value, Current.Coin, OnBuyAllSucceedCallback, StaticsManager.ItemID.解锁服装, StaticsManager.ConsumeModule.Charge, false, false, null, TotalCoin.Key);
|