diff options
author | Andreas Kling <kling@serenityos.org> | 2021-11-30 18:57:18 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-30 23:34:40 +0100 |
commit | d8cccf85de49fe11a1bc1c9b8c98a1cc0204a033 (patch) | |
tree | cf82f6f93e361dcfd512ab01bfabdf7e7c168b1f /Base | |
parent | 2e010db0a5e5c27399acf3497ce3aa7ee4168a34 (diff) | |
download | serenity-d8cccf85de49fe11a1bc1c9b8c98a1cc0204a033.zip |
Base: Remove accidentally-committed GML file from /home/anon
Diffstat (limited to 'Base')
-rw-r--r-- | Base/home/anon/BrowserSettingsWidget.gml | 93 |
1 files changed, 0 insertions, 93 deletions
diff --git a/Base/home/anon/BrowserSettingsWidget.gml b/Base/home/anon/BrowserSettingsWidget.gml deleted file mode 100644 index 0d623b229a..0000000000 --- a/Base/home/anon/BrowserSettingsWidget.gml +++ /dev/null @@ -1,93 +0,0 @@ -@GUI::Frame { - fill_with_background_color: true - - layout: @GUI::VerticalBoxLayout { - margins: [10] - spacing: 5 - } - - @GUI::GroupBox { - title: "Homepage" - fixed_height: 60 - - layout: @GUI::VerticalBoxLayout { - margins: [16, 8, 8] - spacing: 2 - } - - @GUI::Widget { - layout: @GUI::HorizontalBoxLayout { - spacing: 16 - } - - @GUI::Label { - fixed_width: 32 - fixed_height: 32 - name: "homepage_image_label" - } - - @GUI::Label { - text: "URL:" - text_alignment: "CenterLeft" - } - - @GUI::TextBox { - name: "homepage_url_textbox" - placeholder: "https://example.com" - } - } - } - - @GUI::GroupBox { - title: "Search Engine" - fixed_height: 100 - - layout: @GUI::VerticalBoxLayout { - margins: [16, 8, 8] - spacing: 2 - } - - @GUI::Widget { - layout: @GUI::HorizontalBoxLayout { - spacing: 16 - } - - @GUI::Label { - fixed_width: 32 - fixed_height: 32 - name: "search_engine_image_label" - } - - @GUI::Label { - text: "Search engine:" - text_alignment: "CenterLeft" - } - - @GUI::ComboBox { - name: "search_engine_combobox" - } - } - - @GUI::Widget { - layout: @GUI::HorizontalBoxLayout { - spacing: 16 - } - - name: "search_engine_custom_group" - - @GUI::Widget { - fixed_width: 32 - } - - @GUI::Label { - text: "Enter URL template:" - text_alignment: "CenterLeft" - } - - @GUI::TextBox { - name: "search_engine_custom_textbox" - placeholder: "https://host/search?q={}" - } - } - } -} |