diff options
author | thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> | 2022-02-24 05:55:22 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-02-24 19:09:41 +0100 |
commit | 29504ae5b6186510eb6843d2a3cbb63b128bf268 (patch) | |
tree | 5b94d6779889401a14d89c4bedc760def606d661 /Userland | |
parent | 77c4b201571bb362fa3a382d4528aba5e25407c1 (diff) | |
download | serenity-29504ae5b6186510eb6843d2a3cbb63b128bf268.zip |
HackStudio: Adjust heights for Locator and Find widgets
These were two pixels too small and, in Locator's case, blurring
the boundary with Statusbar.
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/DevTools/HackStudio/FindInFilesWidget.cpp | 2 | ||||
-rw-r--r-- | Userland/DevTools/HackStudio/Locator.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Userland/DevTools/HackStudio/FindInFilesWidget.cpp b/Userland/DevTools/HackStudio/FindInFilesWidget.cpp index 632307a68c..28e95f5fc7 100644 --- a/Userland/DevTools/HackStudio/FindInFilesWidget.cpp +++ b/Userland/DevTools/HackStudio/FindInFilesWidget.cpp @@ -118,7 +118,7 @@ FindInFilesWidget::FindInFilesWidget() auto& top_container = add<Widget>(); top_container.set_layout<GUI::HorizontalBoxLayout>(); - top_container.set_fixed_height(20); + top_container.set_fixed_height(22); m_textbox = top_container.add<GUI::TextBox>(); diff --git a/Userland/DevTools/HackStudio/Locator.cpp b/Userland/DevTools/HackStudio/Locator.cpp index c4dedfdb52..0e0a4d1379 100644 --- a/Userland/DevTools/HackStudio/Locator.cpp +++ b/Userland/DevTools/HackStudio/Locator.cpp @@ -98,7 +98,7 @@ LocatorSuggestionModel::Suggestion LocatorSuggestionModel::Suggestion::create_sy Locator::Locator(Core::Object* parent) { set_layout<GUI::VerticalBoxLayout>(); - set_fixed_height(20); + set_fixed_height(22); m_textbox = add<GUI::TextBox>(); m_textbox->on_change = [this] { update_suggestions(); |