diff options
-rw-r--r-- | Applications/Spreadsheet/CondView.gml | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/Applications/Spreadsheet/CondView.gml b/Applications/Spreadsheet/CondView.gml index 45ea4f85e3..d2161da89f 100644 --- a/Applications/Spreadsheet/CondView.gml +++ b/Applications/Spreadsheet/CondView.gml @@ -1,19 +1,16 @@ @GUI::Widget { layout: @GUI::VerticalBoxLayout { - spacing: 2 } @GUI::Widget { + shrink_to_fit: true + layout: @GUI::HorizontalBoxLayout { - spacing: 10 } - fixed_height: 25 - @GUI::Label { text: "if..." fixed_width: 40 - fixed_height: 25 } @GUI::TextEditor { @@ -24,40 +21,34 @@ } @GUI::Widget { + shrink_to_fit: true + layout: @GUI::HorizontalBoxLayout { - spacing: 10 } - fixed_height: 25 - @GUI::Label { text: "Foreground..." fixed_width: 150 - fixed_height: 25 } @GUI::ColorInput { name: "foreground_input" - fixed_height: 25 } } @GUI::Widget { + shrink_to_fit: true + layout: @GUI::HorizontalBoxLayout { - spacing: 10 } - fixed_height: 25 - @GUI::Label { text: "Background..." fixed_width: 150 - fixed_height: 25 } @GUI::ColorInput { name: "background_input" - fixed_height: 25 } } } |