Add widget display name to improve logging

Signed-off-by: AnErrupTion <anerruption@disroot.org>
This commit is contained in:
AnErrupTion
2026-02-11 21:51:07 +01:00
parent b389e379fa
commit 6773f74788
15 changed files with 22 additions and 19 deletions

View File

@@ -25,6 +25,7 @@ pub fn init(
pub fn widget(self: *Cascade) Widget {
return Widget.init(
"Cascade",
self,
null,
null,

View File

@@ -55,6 +55,7 @@ pub fn init(
pub fn widget(self: *ColorMix) Widget {
return Widget.init(
"ColorMix",
self,
null,
null,

View File

@@ -62,6 +62,7 @@ pub fn init(
pub fn widget(self: *Doom) Widget {
return Widget.init(
"Doom",
self,
deinit,
realloc,

View File

@@ -417,6 +417,7 @@ pub fn init(
pub fn widget(self: *DurFile) Widget {
return Widget.init(
"DurFile",
self,
deinit,
realloc,

View File

@@ -72,6 +72,7 @@ pub fn init(
pub fn widget(self: *GameOfLife) Widget {
return Widget.init(
"GameOfLife",
self,
deinit,
realloc,

View File

@@ -69,6 +69,7 @@ pub fn init(
pub fn widget(self: *Matrix) Widget {
return Widget.init(
"Matrix",
self,
deinit,
realloc,