Skip to content

Commit a8fda2c

Browse files
committed
fix keys 0 is not possible anymore
1 parent fdf9052 commit a8fda2c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/BeamAdapter/component/controller/BeamAdapterActionController.inl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ void BeamAdapterActionController<DataTypes>::onKeyPressedEvent(core::objectmodel
8282
case 'D':
8383
m_currAction = BeamAdapterAction::DROP_TOOL;
8484
break;
85-
case '2':
85+
case '3':
8686
m_currAction = BeamAdapterAction::USE_TOOL_2;
8787
break;
88-
case '1':
88+
case '2':
8989
m_currAction = BeamAdapterAction::USE_TOOL_1;
9090
break;
91-
case '0':
91+
case '1':
9292
m_currAction = BeamAdapterAction::USE_TOOL_0;
9393
break;
9494
case 20: // droite = 20

0 commit comments

Comments
 (0)