[apps/regression] When predicting regression, select the line instead of

dots

Change-Id: Ia86c06fa64af8aec68ea9b53ba8534e58be1b64b
This commit is contained in:
Émilie Feral
2017-05-19 14:52:17 +02:00
parent c2237c2acc
commit 5259b3ab94
6 changed files with 21 additions and 7 deletions

View File

@@ -5,11 +5,11 @@ using namespace Shared;
namespace Regression {
PredictionParameterController::PredictionParameterController(Responder * parentResponder, Store * store, CurveViewCursor * cursor) :
PredictionParameterController::PredictionParameterController(Responder * parentResponder, Store * store, CurveViewCursor * cursor, GraphController * graphController) :
ViewController(parentResponder),
m_selectableTableView(this, this, 0, 1, Metric::CommonTopMargin, Metric::CommonRightMargin,
Metric::CommonBottomMargin, Metric::CommonLeftMargin, this),
m_goToParameterController(this, store, cursor)
m_goToParameterController(this, store, cursor, graphController)
{
}