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

Applications: Move to Userland/Applications/

This commit is contained in:
Andreas Kling 2021-01-12 12:05:23 +01:00
parent aa939c4b4b
commit dc28c07fa5
287 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,54 @@
@GUI::Widget {
layout: @GUI::VerticalBoxLayout {
}
@GUI::Widget {
shrink_to_fit: true
layout: @GUI::HorizontalBoxLayout {
}
@GUI::Label {
text: "if..."
fixed_width: 40
}
@GUI::TextEditor {
name: "formula_editor"
fixed_height: 25
tooltip: "Use 'value' to refer to the current cell's value"
}
}
@GUI::Widget {
shrink_to_fit: true
layout: @GUI::HorizontalBoxLayout {
}
@GUI::Label {
text: "Foreground..."
fixed_width: 150
}
@GUI::ColorInput {
name: "foreground_input"
}
}
@GUI::Widget {
shrink_to_fit: true
layout: @GUI::HorizontalBoxLayout {
}
@GUI::Label {
text: "Background..."
fixed_width: 150
}
@GUI::ColorInput {
name: "background_input"
}
}
}