Skip to content

Commit

Permalink
Fix UndoSystem assertion due to uninitialised member
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Dec 26, 2016
1 parent 73dfcc1 commit 3df299f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion radiant/selection/ManipulateMouseTool.cpp
Expand Up @@ -21,7 +21,9 @@ namespace

ManipulateMouseTool::ManipulateMouseTool(SelectionSystem& selectionSystem) :
_selectEpsilon(registry::getValue<float>(RKEY_SELECT_EPSILON)),
_selectionSystem(selectionSystem)
_selectionSystem(selectionSystem),
_manipulationActive(false),
_undoBegun(false)
{}

const std::string& ManipulateMouseTool::getName()
Expand Down

0 comments on commit 3df299f

Please sign in to comment.