[apps/graph/values] add margin to the table of values

Change-Id: I606917b6dc0313a1b9041993aa1315ad7c15f089
This commit is contained in:
Émilie Feral
2016-10-10 17:37:25 +02:00
parent 3360275cea
commit 0d98d57031
2 changed files with 3 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
ValuesController::ValuesController(Responder * parentResponder, Graph::FunctionStore * functionStore) :
ViewController(parentResponder),
m_tableView(TableView(this, k_topMargin, 0, k_bottomMargin, 0)),
m_tableView(TableView(this, k_topMargin, k_rightMargin, k_bottomMargin, k_leftMargin)),
m_activeCellX(0),
m_activeCellY(-1),
m_functionStore(functionStore)