diff --git a/src/tasks.rs b/src/tasks.rs index 8caffd8..dd54e13 100644 --- a/src/tasks.rs +++ b/src/tasks.rs @@ -951,6 +951,11 @@ impl TasksRelay { } pub(crate) fn move_to(&mut self, target: Option) { + if let Some(time) = self.custom_time { + self.track_at(time, target); + return; + } + self.view.clear(); let pos = self.get_position(); if target == pos {