[escher/scroll_view] Replace setShowsIndicators by setDecoratorType

This commit is contained in:
Ruben Dashyan
2019-01-25 10:37:02 +01:00
committed by EmilieNumworks
parent 09e08b43a0
commit faae55eb51
11 changed files with 17 additions and 41 deletions

View File

@@ -26,7 +26,7 @@ MenuController::MenuController(Responder * parentResponder, App * pythonDelegate
m_shouldDisplayAddScriptRow(true)
{
m_selectableTableView.setMargins(0);
m_selectableTableView.setShowsIndicators(false);
m_selectableTableView.setDecoratorType(ScrollView::Decorator::Type::None);
m_addNewScriptCell.setMessage(I18n::Message::AddScript);
for (int i = 0; i < k_maxNumberOfDisplayableScriptCells; i++) {
m_scriptCells[i].setParentResponder(&m_selectableTableView);