summaryrefslogtreecommitdiff
path: root/Userland/Applications/HexEditor
diff options
context:
space:
mode:
authorIdan Horowitz <idan.horowitz@gmail.com>2022-02-12 19:17:01 +0200
committerIdan Horowitz <idan.horowitz@gmail.com>2022-02-13 02:36:35 +0200
commitc8ab45e79fd5845402c6aaf69890e103036e16ef (patch)
tree6a28508d9d953345d80eb6d4f99cc6f40628bc27 /Userland/Applications/HexEditor
parent4c451422c35b3c2044d3b005a7af32d18ce9b194 (diff)
downloadserenity-c8ab45e79fd5845402c6aaf69890e103036e16ef.zip
Userland: Run gml-format
This brings the existing GML files up to spec with the new requirements
Diffstat (limited to 'Userland/Applications/HexEditor')
-rw-r--r--Userland/Applications/HexEditor/FindDialog.gml11
-rw-r--r--Userland/Applications/HexEditor/HexEditorWindow.gml3
2 files changed, 7 insertions, 7 deletions
diff --git a/Userland/Applications/HexEditor/FindDialog.gml b/Userland/Applications/HexEditor/FindDialog.gml
index 5afcea8a24..cd9ca46f69 100644
--- a/Userland/Applications/HexEditor/FindDialog.gml
+++ b/Userland/Applications/HexEditor/FindDialog.gml
@@ -9,9 +9,9 @@
}
@GUI::Widget {
- layout: @GUI::HorizontalBoxLayout
-
+ layout: @GUI::HorizontalBoxLayout {}
fixed_height: 22
+
@GUI::Label {
text: "Value to find"
fixed_width: 80
@@ -24,15 +24,14 @@
}
@GUI::Widget {
- layout: @GUI::VerticalBoxLayout
-
+ layout: @GUI::VerticalBoxLayout {}
name: "radio_container"
}
@GUI::Widget {
- layout: @GUI::HorizontalBoxLayout
-
+ layout: @GUI::HorizontalBoxLayout {}
fixed_height: 22
+
@GUI::Button {
name: "find_button"
text: "Find"
diff --git a/Userland/Applications/HexEditor/HexEditorWindow.gml b/Userland/Applications/HexEditor/HexEditorWindow.gml
index 467ff0176a..4a7d4e0935 100644
--- a/Userland/Applications/HexEditor/HexEditorWindow.gml
+++ b/Userland/Applications/HexEditor/HexEditorWindow.gml
@@ -7,6 +7,7 @@
@GUI::ToolbarContainer {
name: "toolbar_container"
+
@GUI::Toolbar {
name: "toolbar"
}
@@ -20,7 +21,7 @@
@GUI::Widget {
name: "search_results_container"
visible: false
- layout: @GUI::VerticalBoxLayout
+ layout: @GUI::VerticalBoxLayout {}
@GUI::TableView {
name: "search_results"