Skip to content

Commit

Permalink
fix(cpn): pots/sliders should not be inverted by default
Browse files Browse the repository at this point in the history
Resolves #5213
  • Loading branch information
pfeerick committed Jul 1, 2024
1 parent 2316663 commit 32b09c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion companion/src/firmwares/generalsettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ void GeneralSettings::setDefaultControlTypes(Board::Type board)
Board::InputInfo info = Boards::getInputInfo(i, board);
inputConfig[i].type = info.type;
inputConfig[i].flexType = info.flexType;
inputConfig[i].inverted = info.inverted;
inputConfig[i].inverted = false; //info.inverted;
}
}

Expand Down

0 comments on commit 32b09c3

Please sign in to comment.