Skip to content

Commit

Permalink
tmf: Fix missing refresh due to stale sampling
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Tasse <patrick.tasse@gmail.com>
  • Loading branch information
PatrickTasse committed Apr 12, 2024
1 parent cd71bea commit 57e7774
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ private Multimap<ITimeGraphDataProvider<? extends TimeGraphEntryModel>, Long> fi
}
}
} else {
entry.setZoomedEventList(Collections.emptyList());
entry.setZoomedEventList(null);
}
}
return providersToModelIds;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,7 @@ public void setEventList(List<ITimeEvent> eventList) {
*
* @param eventList
* The modifiable list of time events, or null to clear the list
* and reset the sampling
*/
public void setZoomedEventList(List<ITimeEvent> eventList) {
if (eventList != null) {
Expand Down

0 comments on commit 57e7774

Please sign in to comment.