mirror of
https://git.planet-casio.com/Lephenixnoir/JustUI.git
synced 2025-04-04 17:47:13 +02:00
jscene: remove JSCENE_KEY which was causing confusing bugs
It was supposed to be equal to JWIDGET_KEY, but was no longer since constructors were de-prioritized by the new widget declaration systems, non-deterministically, causing a lot of confusion.
This commit is contained in:
parent
4d6b760b1a
commit
23294b77ac
2 changed files with 0 additions and 3 deletions
|
@ -41,7 +41,6 @@ typedef struct {
|
|||
/* Events */
|
||||
extern uint16_t JSCENE_NONE;
|
||||
extern uint16_t JSCENE_PAINT;
|
||||
extern uint16_t JSCENE_KEY; /* Deprecated, merged with JWIDGET_KEY */
|
||||
|
||||
/* jscene_create(): Create a new scene at that specified screen position */
|
||||
jscene *jscene_create(int x, int y, int w, int h, void *parent);
|
||||
|
|
|
@ -16,7 +16,6 @@ static int jscene_type_id = -1;
|
|||
/* Events */
|
||||
uint16_t JSCENE_NONE;
|
||||
uint16_t JSCENE_PAINT;
|
||||
uint16_t JSCENE_KEY;
|
||||
|
||||
/* Keyboard transformation for inputs in a jscene */
|
||||
static int jscene_repeater(int key, GUNUSED int duration, int count)
|
||||
|
@ -318,5 +317,4 @@ static void j_register_jscene(void)
|
|||
jscene_type_id = j_register_widget(&type_jscene);
|
||||
JSCENE_NONE = j_register_event();
|
||||
JSCENE_PAINT = j_register_event();
|
||||
JSCENE_KEY = JWIDGET_KEY;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue