Ladybird: Don't include scrollbars in viewport rect size
This commit is contained in:
parent
a08e83e2cc
commit
b97c74331c
Notes:
sideshowbarker
2024-07-19 01:59:31 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/b97c74331c Pull-request: https://github.com/SerenityOS/serenity/pull/16583 Reviewed-by: https://github.com/ADKaster Reviewed-by: https://github.com/linusg
1 changed files with 4 additions and 0 deletions
|
@ -407,6 +407,10 @@ void WebView::resizeEvent(QResizeEvent* event)
|
|||
auto scaled_width = int(event->size().width() / m_inverse_pixel_scaling_ratio);
|
||||
auto scaled_height = int(event->size().height() / m_inverse_pixel_scaling_ratio);
|
||||
Gfx::IntRect rect(horizontalScrollBar()->value(), verticalScrollBar()->value(), scaled_width, scaled_height);
|
||||
if (verticalScrollBar()->isVisible())
|
||||
rect.set_width(rect.width() - verticalScrollBar()->width());
|
||||
if (horizontalScrollBar()->isVisible())
|
||||
rect.set_height(rect.height() - horizontalScrollBar()->height());
|
||||
m_page_client->set_viewport_rect(rect);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue