Skip to content

Commit

Permalink
#5380: Fix a copy/paste error to make switching to group part mode po…
Browse files Browse the repository at this point in the history
…ssible again
  • Loading branch information
codereader committed Nov 7, 2020
1 parent df3e421 commit eaa69dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radiantcore/selection/RadiantSelectionSystem.cpp
Expand Up @@ -999,7 +999,7 @@ void RadiantSelectionSystem::initialiseModule(const IApplicationContext& ctx)
std::bind(&RadiantSelectionSystem::toggleManipulatorModeCmd, this, std::placeholders::_1), { cmd::ARGTYPE_STRING });

GlobalCommandSystem().addCommand("ToggleEntitySelectionMode", std::bind(&RadiantSelectionSystem::toggleEntityMode, this, std::placeholders::_1));
GlobalCommandSystem().addCommand("ToggleGroupPartSelectionMode", std::bind(&RadiantSelectionSystem::toggleEntityMode, this, std::placeholders::_1));
GlobalCommandSystem().addCommand("ToggleGroupPartSelectionMode", std::bind(&RadiantSelectionSystem::toggleGroupPartMode, this, std::placeholders::_1));

GlobalCommandSystem().addCommand("ToggleComponentSelectionMode",
std::bind(&RadiantSelectionSystem::toggleComponentModeCmd, this, std::placeholders::_1), { cmd::ARGTYPE_STRING });
Expand Down

0 comments on commit eaa69dc

Please sign in to comment.