Fix code style

This commit is contained in:
Np3w 2017-08-11 17:22:52 +02:00
parent 4920522b62
commit 7abda4436b

View File

@ -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;