1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:57:45 +00:00

LibGUI: Calculate maximum primary size for Splitter resizees

This commit is contained in:
thankyouverycool 2022-08-05 06:25:56 -04:00 committed by Andreas Kling
parent aaa4f6d287
commit 6f2a304971
2 changed files with 8 additions and 0 deletions

View file

@ -59,6 +59,8 @@ private:
int m_second_resizee_minimum_size { 0 };
FixedResizee m_fixed_resizee { FixedResizee::First };
size_t m_last_child_count { 0 };
int m_first_resizee_max_size { 0 };
int m_second_resizee_max_size { 0 };
void recompute_grabbables();