[apps/code] Fix Key selector in auto completion

Scenario: Go in the Python editor and type "from ion import *",
          then type "K" and see what happens.
This fix UpsilonNumworks#198
This commit is contained in:
Yaya.Cout
2022-04-15 16:53:19 +02:00
committed by Neo
parent c0c1615f14
commit f174fbc3f5
23 changed files with 554 additions and 45 deletions

View File

@@ -21,6 +21,7 @@ public:
protected:
KDCoordinate rowHeight(int j) override;
bool selectLeaf(int selectedRow, bool quitToolbox) override;
bool selectSubMenu(int selectedRow) override;
MessageTableCellWithMessage * leafCellAtIndex(int index) override;
MessageTableCellWithChevron* nodeCellAtIndex(int index) override;
int maxNumberOfDisplayedRows() override;
@@ -34,7 +35,7 @@ private:
void scrollToAndSelectChild(int i);
MessageTableCellWithMessage m_leafCells[k_maxNumberOfDisplayedRows];
MessageTableCellWithChevron m_nodeCells[k_maxNumberOfDisplayedRows];
toolboxIonKeys m_ionKeys;
ToolboxIonKeys m_ionKeys;
};
}