1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:38:11 +00:00

LibGUI: Force re-layout on Frame thickness changes

This commit is contained in:
FrHun 2023-02-10 01:15:21 +01:00 committed by Sam Atkins
parent cb872f5c9a
commit 30309bac1b

View file

@ -39,6 +39,7 @@ void Frame::set_frame_thickness(int thickness)
return;
m_thickness = thickness;
set_grabbable_margins(thickness);
layout_relevant_change_occurred();
}
void Frame::paint_event(PaintEvent& event)