This commit is contained in:
luboslenco
2026-01-07 13:43:33 +01:00
parent d0eae3d77e
commit ea6aafd759
8 changed files with 22 additions and 27 deletions
+1 -1
View File
@@ -444,7 +444,7 @@ FN(ui_panel) {
uint64_t p;
JS_ToBigUint64(ctx, &p, argv[0]);
char *s = (char *)JS_ToCString(ctx, argv[1]);
bool result = ui_panel((void *)p, s, false, false);
bool result = ui_panel((void *)p, s, false, false, false);
return JS_NewBool(ctx, result);
}