Private
Public Access
0
0

chore(conductor): Mark track 'fix_imgui_keys_down_20260601' as complete

This commit is contained in:
2026-06-01 17:56:24 -04:00
parent 2d035c1fda
commit 8f5565ed04
4 changed files with 15 additions and 13 deletions
@@ -1,13 +1,13 @@
# Implementation Plan: Fix `keys_down` AttributeError
## Phase 1: Investigation and Implementation
- [ ] Task: Investigate ImGui API
- [ ] Identify the correct `imgui-bundle` equivalent for `io.keys_down` (e.g., `imgui.is_key_pressed(imgui.Key.r, False)`).
- [ ] Search the codebase for any other instances of `io.keys_down` that need updating.
- [ ] Task: Apply Fixes
- [ ] Modify `src/gui_2.py` (around line 695) to replace `io.keys_down[ord('R')]` with the modern API call.
- [ ] Apply the same fix to any other locations found during the codebase search.
- [ ] Task: Verification
- [ ] Start the application locally and trigger the `Ctrl+Alt+R` shortcut to confirm it no longer crashes.
- [ ] Ensure general application stability.
- [ ] Task: Conductor - User Manual Verification 'Phase 1: Investigation and Implementation' (Protocol in workflow.md)
- [x] Task: Investigate ImGui API
- [x] Identify the correct `imgui-bundle` equivalent for `io.keys_down` (e.g., `imgui.is_key_pressed(imgui.Key.r, False)`).
- [x] Search the codebase for any other instances of `io.keys_down` that need updating.
- [x] Task: Apply Fixes
- [x] Modify `src/gui_2.py` (around line 695) to replace `io.keys_down[ord('R')]` with the modern API call.
- [x] Apply the same fix to any other locations found during the codebase search.
- [x] Task: Verification
- [x] Start the application locally and trigger the `Ctrl+Alt+R` shortcut to confirm it no longer crashes.
- [x] Ensure general application stability.
- [x] Task: Conductor - User Manual Verification 'Phase 1: Investigation and Implementation' (Protocol in workflow.md)