-
-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tracker: optimisations #165
Comments
Avoid unnecessary redraws when hover target changesThis is done The Possible ideas:
|
Reduce size of data types
Current sizes#[cfg(test)]
#[test]
fn type_sizes() {
use std::mem::size_of;
assert_eq!(size_of::<Event>(), 48);
assert_eq!(size_of::<PressSource>(), 16);
} |
#335 removed usage of the |
A tracker for notable optimisations (generally low priority so long as the UI appears sufficiently fast).
ListData
(thousands of items): see View widgets: trait revision, reliable keys #164ListView::update_widgets
until event queue is empty: see View widgets: trait revision, reliable keys #164The text was updated successfully, but these errors were encountered: