-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix sorting getting corrupted (#211)
ocornut/imgui#4233 bug in imgui, sorts can return corrupted data when specs_dirty is false fixed in imgui 1.84, pyimgui is imgui 1.82 here we were always checking sort specs as different tabs can have different table ids, but switching them dont count as specs_dirty thus always checking the actual specs allowed to sort again when changing tabs now instead we save the specs of all such tables when its specs_dirty is true means no checking specs without specs_dirty, avoiding the imgui bug but can still use correct sorting when changing tab as we save different sorts for different table ids thanks FaceCrap for finding that imgui issue thread!
- Loading branch information
Showing
1 changed file
with
16 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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