Fix rebuild blank screen, CompositeEffort crash, PEP 8 renames#426
Merged
realcarbonneau merged 1 commit intomasterfrom Mar 20, 2026
Merged
Fix rebuild blank screen, CompositeEffort crash, PEP 8 renames#426realcarbonneau merged 1 commit intomasterfrom
realcarbonneau merged 1 commit intomasterfrom
Conversation
Remove paint suppression and idle wait that caused the tree to go blank for seconds when marking tasks complete. The paint debounce (introduced in v2.0.2.6 to fix the AUI cascade) suppressed ALL paints during __refreshing and waited 2-3 EVT_IDLE cycles to clear it. Multiple rebuilds (filter + sort + presentation) stacked the blank time. The motion-only input filter in frame.py is sufficient to prevent the AUI cascade - paint suppression is redundant. Rebuild is now synchronous (same as v2.0.2.5): Freeze, rebuild, Thaw, Refresh(eraseBackground=False). No blank screen. Fix CompositeEffort crash: the UUID sort tiebreaker assumed all items have id(), but CompositeEffort and CompositeEffortPerPeriod (aggregated effort views) do not. Added hasattr guard. PEP 8 renames in treectrl.py and callers in base.py, task.py.
54031fb to
fe9a434
Compare
This was referenced Mar 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Remove paint suppression and idle wait that caused the tree to go blank for seconds when marking tasks complete. The paint debounce (introduced in v2.0.2.6 to fix the AUI cascade) suppressed ALL paints during __refreshing and waited 2-3 EVT_IDLE cycles to clear it. Multiple rebuilds (filter + sort + presentation) stacked the blank time. The motion-only input filter in frame.py is sufficient to prevent the AUI cascade - paint suppression is redundant.
Rebuild is now synchronous (same as v2.0.2.5): Freeze, rebuild, Thaw, Refresh(eraseBackground=False). No blank screen.
Fix CompositeEffort crash: the UUID sort tiebreaker assumed all items have id(), but CompositeEffort and CompositeEffortPerPeriod (aggregated effort views) do not. Added hasattr guard.
PEP 8 renames in treectrl.py: scroll_to_selection, scroll_to_selection_centered, is_clickable_part_of_node_clicked, on_key_down, on_item_expanding, on_double_click, on_item_activated, on_begin_edit, on_end_edit, on_mouse_left_down, on_item_checked, get_item_ct_type, refresh_all_check_states, and private methods. Updated callers in base.py and task.py.
2.0.2.9 Issue when trying to change the efforts view filter #425
2.0.2.9 : Impossible to open a second effort view #424
rendering slowness, total blank for seconds when completing something #423