From f2679115d4ff34bbc577d0ff887b0c1ef7fcaf18 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Mon, 30 Dec 2024 14:03:05 -0800 Subject: [PATCH] Fix runtime warning about calling viewDidAppear at the wrong time. --- iOS/Settings/TimelineCustomizerViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iOS/Settings/TimelineCustomizerViewController.swift b/iOS/Settings/TimelineCustomizerViewController.swift index f9d15bb9a..7a76feaa5 100644 --- a/iOS/Settings/TimelineCustomizerViewController.swift +++ b/iOS/Settings/TimelineCustomizerViewController.swift @@ -36,7 +36,7 @@ class TimelineCustomizerViewController: UIViewController { } override func viewWillAppear(_ animated: Bool) { - super.viewDidAppear(animated) + super.viewWillAppear(animated) updatePreviewBorder() updatePreview() }