mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 16:18:12 +00:00
LibGUI: Properly limit the icon view rubber band rect to the widget
Previously the rubber band rect of IconView was not properly constrained to the widget inner rect, leaving a one pixel gap on the bottom and right side. This patch removes the gap by inflating the constraint rect by one pixel on each axis.
This commit is contained in:
parent
5190f4e605
commit
e42a9cf957
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ void IconView::mouseup_event(MouseEvent& event)
|
|||
|
||||
bool IconView::update_rubber_banding(Gfx::IntPoint const& input_position)
|
||||
{
|
||||
auto adjusted_position = to_content_position(input_position.constrained(widget_inner_rect()));
|
||||
auto adjusted_position = to_content_position(input_position.constrained(widget_inner_rect().inflated(1, 1)));
|
||||
if (m_rubber_band_current != adjusted_position) {
|
||||
auto prev_rect = Gfx::IntRect::from_two_points(m_rubber_band_origin, m_rubber_band_current);
|
||||
auto prev_rubber_band_fill_rect = prev_rect.shrunken(1, 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue