From 23294b77ac945ac35a2b9571e778f8193fd6f4de Mon Sep 17 00:00:00 2001 From: Lephenixnoir Date: Sat, 29 Mar 2025 17:05:03 +0100 Subject: [PATCH] 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. --- include/justui/jscene.h | 1 - src/jscene.c | 2 -- 2 files changed, 3 deletions(-) diff --git a/include/justui/jscene.h b/include/justui/jscene.h index 614b05c..76c9c49 100644 --- a/include/justui/jscene.h +++ b/include/justui/jscene.h @@ -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); diff --git a/src/jscene.c b/src/jscene.c index abfaa2b..b79bfc4 100644 --- a/src/jscene.c +++ b/src/jscene.c @@ -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; }