mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-25 16:50:50 +01:00
[apps/graph/list] Add a switch to the parameter page in graph app
Change-Id: I51f432939157cbd772e7e868d3e0c8e54d279a6d
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
ParameterController::ParameterController(Responder * parentResponder) :
|
||||
ViewController(parentResponder),
|
||||
m_colorCell(TableViewCell("Couleur de la fonction")),
|
||||
m_enableCell(TableViewCell("Activer/Desactiver")),
|
||||
m_enableCell(SwitchTableViewCell("Activer/Desactiver")),
|
||||
m_deleteCell(TableViewCell("Supprimer la fonction")),
|
||||
m_tableView(TableView(this)),
|
||||
m_activeCell(0)
|
||||
|
||||
@@ -24,7 +24,7 @@ public:
|
||||
private:
|
||||
constexpr static int k_totalNumberOfCell = 3;
|
||||
TableViewCell m_colorCell;
|
||||
TableViewCell m_enableCell;
|
||||
SwitchTableViewCell m_enableCell;
|
||||
TableViewCell m_deleteCell;
|
||||
TableView m_tableView;
|
||||
int m_activeCell;
|
||||
|
||||
Reference in New Issue
Block a user