[apps/stats] Fix table margins.

This commit is contained in:
Léa Saviot
2018-05-28 14:23:59 +02:00
parent 41215ac593
commit 0d47a193b2
4 changed files with 7 additions and 2 deletions

View File

@@ -180,7 +180,7 @@ View * StoreController::loadView() {
for (int i = 0; i < k_maxNumberOfEditableCells; i++) {
m_editableCells[i] = new StoreCell(tableView, this, m_draftTextBuffer);
}
tableView->setMargins(k_margin);
tableView->setMargins(k_margin, k_scrollBarMargin, k_scrollBarMargin, k_margin);
return tableView;
}