From 14a51123649e899ac27380f226e00be4a41f4bda Mon Sep 17 00:00:00 2001 From: Felix de las Pozas <felixdelaspozas@gmail.com> Date: Mon, 21 Feb 2022 15:46:14 +0100 Subject: [PATCH] Fix: disable summary labels horizontal scrollbar. --- sumrice/Summary.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sumrice/Summary.cpp b/sumrice/Summary.cpp index 50331a9..729f158 100644 --- a/sumrice/Summary.cpp +++ b/sumrice/Summary.cpp @@ -248,6 +248,7 @@ namespace visimpl _scrollHistoLabels = new QScrollArea( ); _scrollHistoLabels->setWidgetResizable( true ); + _scrollHistoLabels->setHorizontalScrollBarPolicy( Qt::ScrollBarAlwaysOff); _scrollHistoLabels->setVerticalScrollBarPolicy( Qt::ScrollBarAlwaysOff ); _scrollHistoLabels->setWidget( histogramLabelsContainer ); -- GitLab