aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-02-23 22:22:02 -0500
committerSam Anthony <sam@samanthony.xyz>2025-02-23 22:22:02 -0500
commitbdc6e6af796440f06b37f204aedc40d9220f975d (patch)
tree48ea650a343fd97b8c4ff14f0d6294a89eed9c18 /main.c
parentedfe8f1452115a94b2371daf7c150f7a6ac2a2f0 (diff)
downloadvolute-bdc6e6af796440f06b37f204aedc40d9220f975d.zip
set window title
Diffstat (limited to 'main.c')
-rw-r--r--main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.c b/main.c
index 847209a..4660c49 100644
--- a/main.c
+++ b/main.c
@@ -51,7 +51,7 @@ main(void) {
/* Init microui. */
static mu_Context ctx;
mu_init(&ctx);
- r_init(&ctx);
+ r_init(&ctx, TITLE);
set_style(&ctx);
/* Init data structures. */
@@ -115,5 +115,6 @@ main_window(mu_Context *ctx, UI *ui) {
static char buf[64];
snprintf(buf, sizeof(buf), "%lf", value);
mu_label(ctx, buf);
+ mu_label(ctx, "abcdefghijklmnopqrstuvwxyz0123456789");
mu_end_window(ctx);
}