From 4abf37a27db9944e64cdf80b6d069f033071d13d Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Tue, 22 Jan 2019 02:57:54 +1100 Subject: [PATCH] prevent timeline sections from collapsing --- panels/timeline.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/panels/timeline.cpp b/panels/timeline.cpp index c65838279..939bc649c 100644 --- a/panels/timeline.cpp +++ b/panels/timeline.cpp @@ -1760,6 +1760,7 @@ void Timeline::setup_ui() { editAreaLayout->setSpacing(0); editAreaLayout->setContentsMargins(0, 0, 0, 0); QSplitter* splitter = new QSplitter(editAreas); + splitter->setChildrenCollapsible(false); splitter->setOrientation(Qt::Vertical); QWidget* videoContainer = new QWidget(splitter); QHBoxLayout* videoContainerLayout = new QHBoxLayout(videoContainer);