UIGrid: replace vector member getter/setters #20
Labels
No labels
Alpha Release Requirement
Bugfix
Demo Target
Documentation
Major Feature
Minor Feature
priority:tier1-active
priority:tier2-foundation
priority:tier3-future
priority:tier4-deferred
Refactoring & Cleanup
system:animation
system:documentation
system:grid
system:input
system:performance
system:procgen
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 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
john/McRogueFace#20
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
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.