diff options
author | FrHun <28605587+frhun@users.noreply.github.com> | 2021-07-27 20:28:26 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-27 22:17:23 +0200 |
commit | 3d6acc65676e3d63b9281fd84990df07f0c5328a (patch) | |
tree | 2553403fecda9e58230bda0273c50865f4859a8e /Userland/Applications/HexEditor | |
parent | 7f4a32e7bf6dbcc94b441bfaa1e20db07d460d6e (diff) | |
download | serenity-3d6acc65676e3d63b9281fd84990df07f0c5328a.zip |
HexEditor: Fix find dialog layout
Diffstat (limited to 'Userland/Applications/HexEditor')
-rw-r--r-- | Userland/Applications/HexEditor/FindDialog.gml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Applications/HexEditor/FindDialog.gml b/Userland/Applications/HexEditor/FindDialog.gml index 329189b1a8..57b1c9cfa9 100644 --- a/Userland/Applications/HexEditor/FindDialog.gml +++ b/Userland/Applications/HexEditor/FindDialog.gml @@ -11,6 +11,7 @@ @GUI::Widget { layout: @GUI::HorizontalBoxLayout + fixed_height: 22 @GUI::Label { text: "Value to find" @@ -20,7 +21,6 @@ @GUI::TextBox { name: "text_editor" - fixed_height: 20 } } @@ -32,6 +32,7 @@ @GUI::Widget { layout: @GUI::HorizontalBoxLayout + fixed_height: 22 @GUI::Button { name: "find_button" |