1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:47:45 +00:00

Spreadsheet: Simplify conditional formatting property tab GML

This commit is contained in:
Andreas Kling 2021-01-04 18:32:05 +01:00
parent 5db34848fe
commit fa88a26554

View file

@ -1,19 +1,16 @@
@GUI::Widget { @GUI::Widget {
layout: @GUI::VerticalBoxLayout { layout: @GUI::VerticalBoxLayout {
spacing: 2
} }
@GUI::Widget { @GUI::Widget {
layout: @GUI::HorizontalBoxLayout { shrink_to_fit: true
spacing: 10
}
fixed_height: 25 layout: @GUI::HorizontalBoxLayout {
}
@GUI::Label { @GUI::Label {
text: "if..." text: "if..."
fixed_width: 40 fixed_width: 40
fixed_height: 25
} }
@GUI::TextEditor { @GUI::TextEditor {
@ -24,40 +21,34 @@
} }
@GUI::Widget { @GUI::Widget {
layout: @GUI::HorizontalBoxLayout { shrink_to_fit: true
spacing: 10
}
fixed_height: 25 layout: @GUI::HorizontalBoxLayout {
}
@GUI::Label { @GUI::Label {
text: "Foreground..." text: "Foreground..."
fixed_width: 150 fixed_width: 150
fixed_height: 25
} }
@GUI::ColorInput { @GUI::ColorInput {
name: "foreground_input" name: "foreground_input"
fixed_height: 25
} }
} }
@GUI::Widget { @GUI::Widget {
layout: @GUI::HorizontalBoxLayout { shrink_to_fit: true
spacing: 10
}
fixed_height: 25 layout: @GUI::HorizontalBoxLayout {
}
@GUI::Label { @GUI::Label {
text: "Background..." text: "Background..."
fixed_width: 150 fixed_width: 150
fixed_height: 25
} }
@GUI::ColorInput { @GUI::ColorInput {
name: "background_input" name: "background_input"
fixed_height: 25
} }
} }
} }