From 6aa00ead5610d9a3c05a68540f3d182d06841379 Mon Sep 17 00:00:00 2001 From: "Joachim Wuttke (h)" <j.wuttke@fz-juelich.de> Date: Sun, 12 Nov 2023 18:59:36 +0100 Subject: [PATCH] restore zero margins in ColorMap to restore matching of idealized and pixelized maps (#828) --- GUI/View/PlotUtil/ColorMap.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/GUI/View/PlotUtil/ColorMap.cpp b/GUI/View/PlotUtil/ColorMap.cpp index 50bce5d1c78..3aacef46a72 100644 --- a/GUI/View/PlotUtil/ColorMap.cpp +++ b/GUI/View/PlotUtil/ColorMap.cpp @@ -68,6 +68,7 @@ ColorMap::ColorMap(QWidget* parent) connect(m_qcp, &QCustomPlot::afterReplot, this, &ColorMap::marginsChangedNotify); auto* vlayout = new QVBoxLayout(this); + vlayout->setContentsMargins(0, 0, 0, 0); // essential for matching idealized and pixelized maps vlayout->setSpacing(0); vlayout->addWidget(m_qcp); setLayout(vlayout); -- GitLab