UIGrid: replace vector member getter/setters #20
Labels
No Label
Alpha Release Requirement
Bugfix
Demo Target
Documentation
Major Feature
Minor Feature
priority:tier1-active
priority:tier2-foundation
priority:tier3-future
Refactoring & Cleanup
system:animation
system:documentation
system:grid
system:input
system:performance
system:python-binding
system:rendering
system:ui-hierarchy
Tiny Feature
workflow:blocked
workflow:needs-benchmark
workflow:needs-documentation
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: john/McRogueFace#20
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Notes say:
25 refactor: UIGrid get_grid_size replaced with standardized vector methods [depend on feat: standardize vector handling]
Status: Partially addressed, no longer actionable
The original note mentioned "depend on feat: standardize vector handling" - the current tuple-based getter IS the standardized approach.
Complete - Read-Only is Correct
The
grid_sizeproperty exists as a read-only getter returning(grid_x, grid_y)tuple.Current API
A setter is intentionally not provided because resizing a grid would invalidate:
If grid resizing is needed, the correct approach is to create a new grid. The original note mentioned "depend on feat: standardize vector handling" - the current tuple-based getter IS the standardized approach used throughout the codebase.