[apps] Probability: order subviews to draw the law curve at last

(avoiding visible noise)
This commit is contained in:
Émilie Feral
2017-12-22 15:17:44 +01:00
committed by EmilieNumworks
parent fa127ced4e
commit e0b9db43ab

View File

@@ -39,9 +39,9 @@ View * CalculationController::ContentView::subviewAtIndex(int index) {
return &m_titleView;
}
if (index == 1) {
return &m_lawCurveView;
return m_selectableTableView;
}
return m_selectableTableView;
return &m_lawCurveView;
}
void CalculationController::ContentView::layoutSubviews() {