Skip to content

Commit

Permalink
WiSpin: Fix OnClick not being called on touch
Browse files Browse the repository at this point in the history
Noticed this when I changed the print speed via touch and nothing happened.
  • Loading branch information
CZDanol-prusa authored and danopernis committed Aug 23, 2024
1 parent 02104fc commit f0221db
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/guiapi/src/WindowMenuSpin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ void WiSpin::touch(IWindowMenu &window_menu, point_ui16_t relative_touch_point)
const auto r = DialogNumericInput::exec(GetLabel(), value(), config_);
if (r.has_value()) {
set_value(*r);
OnClick();
}
}
}
Expand Down

0 comments on commit f0221db

Please sign in to comment.