Merge pull request #665 from PROP65/assert_delete

Remove unnecessary assert
This commit is contained in:
Rob Loach 2024-08-26 11:30:45 -04:00 committed by GitHub
commit c3282bf274
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 2 deletions

View File

@ -20789,7 +20789,6 @@ nk_window_set_bounds(struct nk_context *ctx,
if (!ctx) return;
win = nk_window_find(ctx, name);
if (!win) return;
NK_ASSERT(ctx->current != win && "You cannot update a currently in procecss window");
win->bounds = bounds;
}
NK_API void

View File

@ -567,7 +567,6 @@ nk_window_set_bounds(struct nk_context *ctx,
if (!ctx) return;
win = nk_window_find(ctx, name);
if (!win) return;
NK_ASSERT(ctx->current != win && "You cannot update a currently in procecss window");
win->bounds = bounds;
}
NK_API void