From 827c78da13b998536e81ac5e2b721829ec2cb26d Mon Sep 17 00:00:00 2001 From: silas Date: Sun, 2 May 2021 11:32:38 -0500 Subject: [PATCH] Fix window getting larger when spamming toggle LED view Commit amended to only implement size hint change by Adam Honse --- qt/DeviceView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/DeviceView.cpp b/qt/DeviceView.cpp index 5552a2f7..2c99176b 100644 --- a/qt/DeviceView.cpp +++ b/qt/DeviceView.cpp @@ -334,7 +334,7 @@ void DeviceView::setController(RGBController * controller_ptr) QSize DeviceView::sizeHint () const { - return QSize(height(),height()); + return QSize(height() - 1, height() - 1); } QSize DeviceView::minimumSizeHint () const