diff options
author | FrHun <28605587+frhun@users.noreply.github.com> | 2021-09-14 21:08:57 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-03 16:13:19 +0100 |
commit | 8249ea792e1b596396631157e96bf9c5c3df06ff (patch) | |
tree | 487a5f35d730b8566f9cd0c8a8d45ac1489c2b83 /Userland/Libraries/LibGUI/Splitter.h | |
parent | a261e4d9d505bd97790f966809970c114f464ac5 (diff) | |
download | serenity-8249ea792e1b596396631157e96bf9c5c3df06ff.zip |
LibGUI+FileManager: Clarify Widget margins name
Even though they are called content_margins,
they are actually only ever used to determine where
a Widget is supposed to be grabbable.
So all methods and members are renamed accordingly.
Diffstat (limited to 'Userland/Libraries/LibGUI/Splitter.h')
-rw-r--r-- | Userland/Libraries/LibGUI/Splitter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/Splitter.h b/Userland/Libraries/LibGUI/Splitter.h index 946edd3b63..5661492ecf 100644 --- a/Userland/Libraries/LibGUI/Splitter.h +++ b/Userland/Libraries/LibGUI/Splitter.h @@ -35,7 +35,7 @@ protected: private: void override_cursor(bool do_override); - Gfx::IntRect rect_between_widgets(GUI::Widget const& first_widget, GUI::Widget const& second_widget, bool honor_content_margins) const; + Gfx::IntRect rect_between_widgets(GUI::Widget const& first_widget, GUI::Widget const& second_widget, bool honor_grabbable_margins) const; Gfx::Orientation m_orientation; bool m_resizing { false }; |