shithub: microui

Download patch

ref: 2fa723abb1f96b4a630c86fb38b361bce8c3fc9b
parent: 6976c0c212855b62635b9478bd59d363de7b3c18
author: rxi <rxi@users.noreply.github.com>
date: Sat Sep 22 11:27:27 EDT 2018

Removed window info `hovered` part of demo

--- a/demo/main.c
+++ b/demo/main.c
@@ -42,8 +42,6 @@
       sprintf(buf, "%d, %d", window.rect.x, window.rect.y); mu_label(ctx, buf);
       mu_label(ctx, "Size:");
       sprintf(buf, "%d, %d", window.rect.w, window.rect.h); mu_label(ctx, buf);
-      mu_label(ctx, "Hovered:");
-      mu_label(ctx, ctx->hover_root == &window ? "true" : "false");
     }
 
     /* labels + buttons */
--