From 948450e8bd4aaae1a7e0a98761716c5d6ebe2416 Mon Sep 17 00:00:00 2001 From: malte_langkabel Date: Thu, 17 Nov 2016 14:54:43 +0100 Subject: [PATCH] ui: fixed issue that sometimes caused coati to slow down to a halt when activating symbol --- src/lib_gui/qt/element/QtCodeArea.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_gui/qt/element/QtCodeArea.cpp b/src/lib_gui/qt/element/QtCodeArea.cpp index 293feaf3..9c32f6ce 100644 --- a/src/lib_gui/qt/element/QtCodeArea.cpp +++ b/src/lib_gui/qt/element/QtCodeArea.cpp @@ -165,7 +165,7 @@ QSize QtCodeArea::sizeHint() const height += horizontalScrollBar()->height(); } - return QSize(0, height + 1); + return QSize(0, height + 5); } uint QtCodeArea::getStartLineNumber() const