diff --git a/pybamm/plotting/quick_plot.py b/pybamm/plotting/quick_plot.py index 72fadc578b..a14b8d435b 100644 --- a/pybamm/plotting/quick_plot.py +++ b/pybamm/plotting/quick_plot.py @@ -526,8 +526,8 @@ def plot(self, t): ax.set_ylim(y_min, y_max) (self.time_lines[key],) = ax.plot( [ - t_in_seconds * self.time_scaling_factor, - t_in_seconds * self.time_scaling_factor, + t_in_seconds / self.time_scaling_factor, + t_in_seconds / self.time_scaling_factor, ], [y_min, y_max], "k--",