[apps/statistics] EXE should open the histogram param controller

The OK button already does it.
This commit is contained in:
Léa Saviot
2020-02-24 16:05:39 +01:00
committed by EmilieNumworks
parent e5a2208b27
commit 22afe4df2d

View File

@@ -42,7 +42,7 @@ const char * HistogramController::title() {
bool HistogramController::handleEvent(Ion::Events::Event event) {
assert(selectedSeriesIndex() >= 0);
if (event == Ion::Events::OK) {
if (event == Ion::Events::OK || event == Ion::Events::EXE) {
stackController()->push(histogramParameterController());
return true;
}