From 42db352921b32a781a5a4de25831b5bef46a27b6 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Sun, 7 Aug 2022 22:25:31 -0700 Subject: [PATCH] mainwindow: don't disable focus when appending timeline panel I guess this was supposed to fix something at some point but now breaks it, so I'm removing it --- app/window/mainwindow/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/window/mainwindow/mainwindow.cpp b/app/window/mainwindow/mainwindow.cpp index 39d943eea..d80e3fad5 100644 --- a/app/window/mainwindow/mainwindow.cpp +++ b/app/window/mainwindow/mainwindow.cpp @@ -186,7 +186,7 @@ TimelinePanel* MainWindow::OpenSequence(Sequence *sequence, bool enable_focus) panel = timeline_panels_.first(); } else { panel = AppendTimelinePanel(); - enable_focus = false; + //enable_focus = false; } panel->ConnectViewerNode(sequence);