Fix window getting larger when spamming toggle LED view

Commit amended to only implement size hint change by Adam Honse <calcprogrammer1@gmail.com>
This commit is contained in:
silas 2021-05-02 11:32:38 -05:00 committed by Adam Honse
parent 08d495941e
commit 827c78da13

View file

@ -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