Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions lib/src/controllers/painter_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -432,9 +432,13 @@ class PainterControllerValue {
selectedObjectDrawable == other.selectedObjectDrawable);
}

@override
int get hashCode => hashValues(
hashList(_drawables), background, settings, selectedObjectDrawable);
@override
int get hashCode => Object.hash(
Object.hashAll(_drawables),
background,
settings,
selectedObjectDrawable
);
}

/// Private class that is used internally to represent no
Expand Down