Fix about-boe not showing all of bottom line in pane

This commit is contained in:
2025-05-16 19:01:37 -05:00
parent 965b1c631b
commit 43060bb1cf

View File

@@ -46,7 +46,7 @@ void cScrollPane::recalcRect() {
globalFrame.inset(-4,-4);
frame.left = globalFrame.left;
frame.right = globalFrame.right;
scroll.setMaximum((globalFrame.height() - frame.height()) / 5);
scroll.setMaximum(ceil((globalFrame.height() - frame.height()) / 5.0));
scroll.setPageSize((frame.height() - 5) / 5);
rectangle scrollFrame;
scrollFrame.left = frame.right;