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:
Lephenixnoir 2025-03-29 17:05:03 +01:00
parent 4d6b760b1a
commit 23294b77ac
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495
2 changed files with 0 additions and 3 deletions

View file

@ -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);

View file

@ -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;
}