mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 22:15:32 +00:00
Check if item model exists inside drag and drop functions
This commit is contained in:
parent
e4f862c0b9
commit
eeffe2e557
1 changed files with 9 additions and 3 deletions
|
@ -52,7 +52,7 @@ namespace MWGui
|
|||
|
||||
void ContainerWindow::onItemSelected(int index)
|
||||
{
|
||||
if (mDragAndDrop->mIsOnDragAndDrop && mModel)
|
||||
if (mDragAndDrop->mIsOnDragAndDrop)
|
||||
{
|
||||
dropItem();
|
||||
return;
|
||||
|
@ -82,12 +82,15 @@ namespace MWGui
|
|||
dialog->eventOkClicked.clear();
|
||||
dialog->eventOkClicked += MyGUI::newDelegate(this, &ContainerWindow::dragItem);
|
||||
}
|
||||
else if (mModel)
|
||||
else
|
||||
dragItem (NULL, count);
|
||||
}
|
||||
|
||||
void ContainerWindow::dragItem(MyGUI::Widget* sender, int count)
|
||||
{
|
||||
if (!mModel)
|
||||
return;
|
||||
|
||||
if (!onTakeItem(mModel->getItem(mSelectedItem), count))
|
||||
return;
|
||||
|
||||
|
@ -96,6 +99,9 @@ namespace MWGui
|
|||
|
||||
void ContainerWindow::dropItem()
|
||||
{
|
||||
if (!mModel)
|
||||
return;
|
||||
|
||||
bool success = mModel->onDropItem(mDragAndDrop->mItem.mBase, mDragAndDrop->mDraggedCount);
|
||||
|
||||
if (success)
|
||||
|
@ -104,7 +110,7 @@ namespace MWGui
|
|||
|
||||
void ContainerWindow::onBackgroundSelected()
|
||||
{
|
||||
if (mDragAndDrop->mIsOnDragAndDrop && mModel)
|
||||
if (mDragAndDrop->mIsOnDragAndDrop)
|
||||
dropItem();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue