UI: Calm Warning in #130617 About Variable Mismatch

Fix compiler warning about variable mismatch (int versus uint) in
commit bc5fcbe1c3.

Pull Request: https://projects.blender.org/blender/blender/pulls/130633
This commit is contained in:
Harley Acheson
2024-11-20 22:58:43 +01:00
committed by Harley Acheson
parent 2523958e0e
commit 7c81ec922c

View File

@@ -335,7 +335,7 @@ static int object_hide_view_set_exec(bContext *C, wmOperator *op)
const bool unselected = RNA_boolean_get(op->ptr, "unselected");
bool changed = false;
const bool confirm = op->flag & OP_IS_INVOKE;
int hide_count = 0;
uint hide_count = 0;
/* Hide selected or unselected objects. */
BKE_view_layer_synced_ensure(scene, view_layer);