mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-02 20:12:07 +08:00
cabana: fix rounding error in filter sizehint (#28116)
old-commit-hash: b3a3040d09f32e45fd21c72d518ac57a29b2f27d
This commit is contained in:
@@ -544,7 +544,7 @@ void MessageViewHeader::updateGeometries() {
|
||||
QSize MessageViewHeader::sizeHint() const {
|
||||
QSize sz = QHeaderView::sizeHint();
|
||||
if (editors[0]) {
|
||||
sz.setHeight(sz.height() + editors[0]->minimumSizeHint().height());
|
||||
sz.setHeight(sz.height() + editors[0]->minimumSizeHint().height() + 1);
|
||||
}
|
||||
return sz;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user