Browse Source

Fix code style

Np3w 8 years ago
parent
commit
7abda4436b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      nuklear.h

+ 1 - 1
nuklear.h

@@ -18785,7 +18785,7 @@ nk_window_is_any_hovered(struct nk_context *ctx)
     iter = ctx->begin;
     while (iter) {
         /* check if window is being hovered */
-        if(!(iter->flags & NK_WINDOW_HIDDEN)){
+        if(!(iter->flags & NK_WINDOW_HIDDEN)) {
             if (iter->flags & NK_WINDOW_MINIMIZED) {
                 struct nk_rect header = iter->bounds;
                 header.h = ctx->style.font->height + 2 * ctx->style.window.header.padding.y;