Skip to content

Commit

Permalink
debugger: fix spacing around splitters
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Suciu <[email protected]>
  • Loading branch information
adisuciu committed Nov 22, 2024
1 parent 7f1bf97 commit 5ebd3a4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions plugins/debugger/src/iioexplorer/iioexplorerinstrument.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5ebd3a4

Please sign in to comment.