mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[apps] Python: in the menu controller, the editable cells holding the
script names are not responder as long as they are not set as first responder manually by renameSelectedScript for instance
This commit is contained in:
@@ -83,6 +83,12 @@ private:
|
||||
void intToText(int i, char * buffer);
|
||||
void updateAddScriptRowDisplay();
|
||||
ScriptStore * m_scriptStore;
|
||||
class EvenOddEditableTextCell : public ::EvenOddEditableTextCell {
|
||||
public:
|
||||
Responder * responder() override {
|
||||
return nullptr;
|
||||
}
|
||||
};
|
||||
EvenOddEditableTextCell m_scriptCells[k_maxNumberOfDisplayableScriptCells];
|
||||
/* In the initializer list of the MenuController constructor, we initialize
|
||||
* m_scriptCells by copying k_maxNumberOfDisplayableScriptCells times the
|
||||
|
||||
Reference in New Issue
Block a user