From fb4b1ed3c3366f993136e1f9a442bb2dc6d758ab Mon Sep 17 00:00:00 2001
From: client_Hale <339726288@qq.com>
Date: 星期三, 26 九月 2018 22:35:18 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
---
System/KnapSack/Logic/BoxGetItemModel.cs | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/System/KnapSack/Logic/BoxGetItemModel.cs b/System/KnapSack/Logic/BoxGetItemModel.cs
index 233d413..4d84da6 100644
--- a/System/KnapSack/Logic/BoxGetItemModel.cs
+++ b/System/KnapSack/Logic/BoxGetItemModel.cs
@@ -49,13 +49,13 @@
switch (showType)
{
case BoxShowType.NoramalShow:
- if (!WindowCenter.Instance.CheckOpen<BoxGetItemWin>())
+ if (!WindowCenter.Instance.IsOpen<BoxGetItemWin>())
{
WindowCenter.Instance.Open<BoxGetItemWin>();
}
break;
case BoxShowType.PrefectShow:
- if (!WindowCenter.Instance.CheckOpen<BoxGetItemWin>())
+ if (!WindowCenter.Instance.IsOpen<BoxGetItemWin>())
{
WindowCenter.Instance.Open<BoxGetItemWin>();
}
@@ -166,7 +166,7 @@
bool isSelectItem = IsSelectItemByID(itemId, out selectDict);
if (isSelectItem)
{
- if (!WindowCenter.Instance.CheckOpen<ChooseItemWin>())
+ if (!WindowCenter.Instance.IsOpen<ChooseItemWin>())
{
WindowCenter.Instance.Open<ChooseItemWin>();
}
--
Gitblit v1.8.0