remove bad wind tool exception, make sure UpdateDrawMode() is called on zoom mouseups
should be pretty easy to remove any remaining tptmp syncing issues now. There are still a few possible bugs in my list but they require a mouse to test ...
This commit is contained in:
parent
5acf366d70
commit
610cd82f0d
@ -1217,14 +1217,14 @@ void GameView::OnMouseUp(int x, int y, unsigned button)
|
||||
// plop tool stuff (like STKM)
|
||||
c->ToolClick(toolIndex, finalDrawPoint2);
|
||||
}
|
||||
|
||||
// update the drawing mode for the next line
|
||||
// since ctrl/shift state may have changed since we started drawing
|
||||
UpdateDrawMode();
|
||||
}
|
||||
// this shouldn't happen, but do this just in case
|
||||
else if (selectMode != SelectNone && button != BUTTON_LEFT)
|
||||
selectMode = SelectNone;
|
||||
|
||||
// update the drawing mode for the next line
|
||||
// since ctrl/shift state may have changed since we started drawing
|
||||
UpdateDrawMode();
|
||||
}
|
||||
|
||||
void GameView::ExitPrompt()
|
||||
@ -1368,10 +1368,7 @@ void GameView::OnKeyPress(int key, Uint16 character, bool shift, bool ctrl, bool
|
||||
}
|
||||
else
|
||||
{
|
||||
if (drawMode != DrawLine && !windTool)
|
||||
{
|
||||
isMouseDown = false;
|
||||
}
|
||||
isMouseDown = false;
|
||||
zoomCursorFixed = false;
|
||||
c->SetZoomEnabled(true);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user