From dff6cbb3e1404ed5bf7b8340305d18a75d525fe2 Mon Sep 17 00:00:00 2001 From: fourtf Date: Tue, 10 Apr 2018 17:14:13 +0200 Subject: [PATCH] fixed split columns not loading properly --- src/singletons/windowmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/singletons/windowmanager.cpp b/src/singletons/windowmanager.cpp index c99fce47d..1c610c997 100644 --- a/src/singletons/windowmanager.cpp +++ b/src/singletons/windowmanager.cpp @@ -204,7 +204,7 @@ void WindowManager::initialize() channelName_val.toString())); } - tab->addToLayout(split, std::make_pair(colNr, -1)); + tab->addToLayout(split, std::make_pair(colNr, 10000000)); } colNr++; }