From cab24f73837bfcb8788b889e1fbebc7c436b5b65 Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Mon, 28 Jan 2013 08:54:50 +0000 Subject: [PATCH] Fix all plot reveal size My bad -- added padding at the top a while ago when trying to fix another issue. Then forgot to remove it afterwards. --- src/AllPlotWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AllPlotWindow.cpp b/src/AllPlotWindow.cpp index 30085e85e..63ca15dcf 100644 --- a/src/AllPlotWindow.cpp +++ b/src/AllPlotWindow.cpp @@ -90,7 +90,7 @@ AllPlotWindow::AllPlotWindow(MainWindow *mainWindow) : // layout reveal controls QHBoxLayout *r = new QHBoxLayout; - r->setContentsMargins(0,15,0,0); + r->setContentsMargins(0,0,0,0); r->addStretch(); r->addWidget(rSmooth); r->addWidget(rSmoothEdit);