Skip to content

Commit

Permalink
Re-enabled interactions clearing
Browse files Browse the repository at this point in the history
  • Loading branch information
stasgora committed May 17, 2021
1 parent 4c76dac commit 66ea936
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.3.3

- **FIX**: interactions not cleared when heat map is generated

# 0.3.2

- **FIX**: scroll state loss when switching routes
Expand Down
2 changes: 1 addition & 1 deletion lib/src/components/session_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class SessionManager {
for (var key in _sessions.keys) {
if (!skipSession(_sessions[key]!)) _exportSession(key);
}
//_sessions.removeWhere((key, session) => !skipSession(session));
_sessions.removeWhere((key, session) => !skipSession(session));
}

void _exportSession(String key) {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Customizable, easy to use heat map interface analysis library
repository: https://github.com/stasgora/round-spot
issue_tracker: https://github.com/stasgora/round-spot/issues

version: 0.3.2
version: 0.3.3

environment:
sdk: '>=2.12.0 <3.0.0'
Expand Down

0 comments on commit 66ea936

Please sign in to comment.