mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-05-18 11:35:21 -04:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user