mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
[apps/sequence][apps/graph] Hide "copy column" functionnality
Change-Id: I5c452faa1ef79bb1eec8bbdd8b69ba684661a38b
This commit is contained in:
@@ -32,8 +32,9 @@ bool FunctionParameterController::handleEvent(Ion::Events::Event event) {
|
||||
m_selectableTableView.reloadData();
|
||||
return true;
|
||||
}
|
||||
case 1:
|
||||
return false;
|
||||
/* TODO: implement copy column
|
||||
* case 1:
|
||||
return false;*/
|
||||
default:
|
||||
assert(false);
|
||||
return false;
|
||||
@@ -49,7 +50,7 @@ int FunctionParameterController::numberOfRows() {
|
||||
HighlightCell * FunctionParameterController::reusableCell(int index) {
|
||||
assert(index >= 0);
|
||||
assert(index < k_totalNumberOfCell);
|
||||
HighlightCell * cells[] = {&m_displayDerivativeColumn, &m_copyColumn};
|
||||
HighlightCell * cells[] = {&m_displayDerivativeColumn}; // {&m_displayDerivativeColumn, &m_copyColumn};
|
||||
return cells[index];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user