Skip to content

Commit

Permalink
fix(simulator): TPRO menu key not working (#3921)
Browse files Browse the repository at this point in the history
  • Loading branch information
3djc authored Aug 14, 2023
1 parent b377a8b commit 4924500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion companion/src/simulation/simulateduiwidgetJumperTPRO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SimulatedUIWidgetJumperTPRO::SimulatedUIWidgetJumperTPRO(SimulatorInterface *sim

ui->setupUi(this);

act = new RadioUiAction(4, QList<int>() << Qt::Key_PageUp << Qt::Key_Up, SIMU_STR_HLP_KEYS_GO_UP, SIMU_STR_HLP_ACT_MENU_ICN);
act = new RadioUiAction(0, QList<int>() << Qt::Key_PageUp << Qt::Key_Up, SIMU_STR_HLP_KEYS_GO_UP, SIMU_STR_HLP_ACT_MENU_ICN);
addRadioWidget(ui->leftbuttons->addArea(QRect(70, 85, 110, 90), "JumperTPRO/left.png", act));

act = new RadioUiAction(3, QList<int>() << Qt::Key_PageDown << Qt::Key_Down, SIMU_STR_HLP_KEYS_GO_DN, SIMU_STR_HLP_ACT_PAGE);
Expand Down

0 comments on commit 4924500

Please sign in to comment.