From 6b25842b104476afa3844363c85697718700e124 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 21 May 2021 15:11:16 +0200 Subject: [PATCH] Base: Remove accidentally added file :^) --- Base/home/anon/BackgroundSettings.gml | 65 --------------------------- 1 file changed, 65 deletions(-) delete mode 100644 Base/home/anon/BackgroundSettings.gml diff --git a/Base/home/anon/BackgroundSettings.gml b/Base/home/anon/BackgroundSettings.gml deleted file mode 100644 index 8167a93876..0000000000 --- a/Base/home/anon/BackgroundSettings.gml +++ /dev/null @@ -1,65 +0,0 @@ -@GUI::Widget { - fill_with_background_color: true - - layout: @GUI::VerticalBoxLayout { - margins: [4, 4, 4, 4] - } - - @DisplaySettings::MonitorWidget { - name: "monitor_widget" - } - - @GUI::Widget { - shrink_to_fit: true - layout: @GUI::HorizontalBoxLayout - - @GUI::Label { - text: "Wallpaper:" - text_alignment: "CenterLeft" - fixed_width: 70 - } - - @GUI::ComboBox { - name: "wallpaper_combo" - } - - @GUI::Button { - name: "wallpaper_open_button" - tooltip: "Select wallpaper from file system." - button_style: "Coolbar" - fixed_width: 22 - fixed_height: 22 - } - } - - @GUI::Widget { - shrink_to_fit: true - layout: @GUI::HorizontalBoxLayout - - @GUI::Label { - text: "Modes:" - text_alignment: "CenterLeft" - fixed_width: 70 - } - - @GUI::ComboBox { - name: "mode_combo" - } - } - - @GUI::Widget { - shrink_to_fit: true - layout: @GUI::HorizontalBoxLayout - - @GUI::Label { - text: "Color:" - text_alignment: "CenterLeft" - fixed_width: 70 - } - - @GUI::ColorInput { - name: "color_input" - fixed_width: 90 - } - } -}