[apps] Do not display the scroller in function list and store controller

Change-Id: I5b1551ec057c428b70e2d15eeaee25029127c5c6
This commit is contained in:
Émilie Feral
2017-01-24 14:51:34 +01:00
parent 5c2d6e0591
commit a2a7f7883c
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
EditableCellTableViewController::EditableCellTableViewController(Responder * parentResponder, KDCoordinate topMargin,
KDCoordinate rightMargin, KDCoordinate bottomMargin, KDCoordinate leftMargin) :
ViewController(parentResponder),
m_selectableTableView(SelectableTableView(this, this, topMargin, rightMargin, bottomMargin, leftMargin, this))
m_selectableTableView(SelectableTableView(this, this, topMargin, rightMargin, bottomMargin, leftMargin, this, false))
{
}

View File

@@ -9,7 +9,7 @@ ListController::ListController(Responder * parentResponder, FunctionStore * func
HeaderViewDelegate(header),
m_functionTitleCells{FunctionTitleCell(FunctionTitleCell::Orientation::VerticalIndicator, KDText::FontSize::Large), FunctionTitleCell(FunctionTitleCell::Orientation::VerticalIndicator, KDText::FontSize::Large), FunctionTitleCell(FunctionTitleCell::Orientation::VerticalIndicator, KDText::FontSize::Large),
FunctionTitleCell(FunctionTitleCell::Orientation::VerticalIndicator, KDText::FontSize::Large), FunctionTitleCell(FunctionTitleCell::Orientation::VerticalIndicator, KDText::FontSize::Large), FunctionTitleCell(FunctionTitleCell::Orientation::VerticalIndicator, KDText::FontSize::Large)},
m_selectableTableView(SelectableTableView(this, this)),
m_selectableTableView(SelectableTableView(this, this, 0, 0, 0, 0, nullptr, false, true)),
m_functionStore(functionStore),
m_parameterController(ParameterController(this, functionStore))
{