From 29504ae5b6186510eb6843d2a3cbb63b128bf268 Mon Sep 17 00:00:00 2001 From: thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> Date: Thu, 24 Feb 2022 05:55:22 -0500 Subject: [PATCH] HackStudio: Adjust heights for Locator and Find widgets These were two pixels too small and, in Locator's case, blurring the boundary with Statusbar. --- Userland/DevTools/HackStudio/FindInFilesWidget.cpp | 2 +- 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(); top_container.set_layout(); - top_container.set_fixed_height(20); + top_container.set_fixed_height(22); m_textbox = top_container.add(); 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(); - set_fixed_height(20); + set_fixed_height(22); m_textbox = add(); m_textbox->on_change = [this] { update_suggestions();