From 5ebd3a448afca24af4ad81f8edd60f9b507aafa6 Mon Sep 17 00:00:00 2001 From: Adrian Suciu Date: Fri, 22 Nov 2024 13:53:51 +0200 Subject: [PATCH] debugger: fix spacing around splitters Signed-off-by: Adrian Suciu --- plugins/debugger/src/iioexplorer/iioexplorerinstrument.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/debugger/src/iioexplorer/iioexplorerinstrument.cpp b/plugins/debugger/src/iioexplorer/iioexplorerinstrument.cpp index 97b3b75d1a..6e6c3ac80e 100644 --- a/plugins/debugger/src/iioexplorer/iioexplorerinstrument.cpp +++ b/plugins/debugger/src/iioexplorer/iioexplorerinstrument.cpp @@ -98,8 +98,11 @@ void IIOExplorerInstrument::setupUi() right_container->setLayout(new QVBoxLayout(right_container)); right_container->layout()->setContentsMargins(0, 0, 0, 0); details_container->setLayout(new QVBoxLayout(details_container)); + details_container->layout()->setContentsMargins(2, 9, 9, 2); watch_list->setLayout(new QVBoxLayout(watch_list)); + watch_list->layout()->setContentsMargins(2, 2, 9, 9); tree_view_container->setLayout(new QVBoxLayout(tree_view_container)); + tree_view_container->layout()->setContentsMargins(9, 9, 2, 9); m_proxyModel = new IIOSortFilterProxyModel(this); m_treeView = new QTreeView(tree_view_container);