From f97d79f252381ae2df5a6918e1f6cf1cbd0a9e70 Mon Sep 17 00:00:00 2001 From: gr5 Date: Wed, 24 Dec 2025 08:57:44 -0500 Subject: [PATCH] Made the 2 docking splitters have slightly wider, teal colored, much more visible separators to match the other 2 teal QSliders --- mainwindow.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index f94ef72b..f0301941 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -170,7 +170,7 @@ MainWindow::MainWindow(QWidget *parent) : m_profilePlot->setStyleSheet( {"border: 3px outset darkgrey;"}); review->s1->addWidget(m_contourView); QRect rec = QGuiApplication::primaryScreen()->geometry(); - review->s1->setSizes({INT_MAX, INT_MAX}); + review->s1->setSizes({INT_MAX, INT_MAX}); // because these numbers are identical it will default split the 3d view and contour view 50/50 review->s2->setSizes({ rec.height()/2, rec.height()/2}); review->s2->setStyleSheet( "QSplitter::handle:vertical{ border: 3px outset #004545; background: #ccffff }" @@ -179,6 +179,10 @@ MainWindow::MainWindow(QWidget *parent) : "QSplitter::handle:horizontal{ border: 3px outset #004545; background: #ccffff }" ); + // make docking border separators larger and teal so they are more obvious to users + setStyleSheet( + "QMainWindow::separator { width: 4px; border: 3px outset #004545; background: #ccffff }"); + //Surface Manager m_surfaceManager = SurfaceManager::get_instance(this,m_surfTools, m_profilePlot, m_contourView, m_ogl->m_surface, metrics);