Merge pull request #662 from bolt-blue/indentation_quickfix

Improve one poor case of indentation
This commit is contained in:
Rob Loach 2024-07-20 03:06:17 -04:00 committed by GitHub
commit 8f3fc31ba5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 18 additions and 14 deletions

View File

@ -9701,7 +9701,9 @@ nk_draw_list_push_image(struct nk_draw_list *list, nk_handle texture)
#ifdef NK_INCLUDE_COMMAND_USERDATA #ifdef NK_INCLUDE_COMMAND_USERDATA
|| prev->userdata.id != list->userdata.id || prev->userdata.id != list->userdata.id
#endif #endif
) nk_draw_list_push_command(list, prev->clip_rect, texture); ) {
nk_draw_list_push_command(list, prev->clip_rect, texture);
}
} }
} }
#ifdef NK_INCLUDE_COMMAND_USERDATA #ifdef NK_INCLUDE_COMMAND_USERDATA

View File

@ -203,7 +203,9 @@ nk_draw_list_push_image(struct nk_draw_list *list, nk_handle texture)
#ifdef NK_INCLUDE_COMMAND_USERDATA #ifdef NK_INCLUDE_COMMAND_USERDATA
|| prev->userdata.id != list->userdata.id || prev->userdata.id != list->userdata.id
#endif #endif
) nk_draw_list_push_command(list, prev->clip_rect, texture); ) {
nk_draw_list_push_command(list, prev->clip_rect, texture);
}
} }
} }
#ifdef NK_INCLUDE_COMMAND_USERDATA #ifdef NK_INCLUDE_COMMAND_USERDATA