1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
This commit is contained in:
Michał W. Urbańczyk 2010-02-10 03:21:23 +00:00
parent 0fdbe787dc
commit c1cb2c223f
2 changed files with 5 additions and 0 deletions

View File

@ -424,6 +424,7 @@ void CSlider::sliderClicked()
if(!(active & MOVE))
{
activateMouseMove();
used |= MOVE;
}
}
@ -529,7 +530,10 @@ void CSlider::clickLeft(tribool down, bool previousState)
return;
}
if(active & MOVE)
{
deactivateMouseMove();
used &= ~MOVE;
}
}
CSlider::~CSlider()

View File

@ -3080,6 +3080,7 @@ void CBattleInterface::endAction(const BattleAction* action)
if(action->actionType == 9) //catapult
{
}
queue->update();
}
void CBattleInterface::hideQueue()