ladybird/Userland/Libraries/LibGUI/EmojiInputDialog.gml
Timothy Flynn 3aaaacdb3a LibGUI: Wrap the EmojiInputDialog in a scrollable container
This will prevent the dialog from growing endlessly as emoji are added.
2022-09-07 14:34:02 +01:00

16 lines
367 B
Text

@GUI::Frame {
shape: "Container"
shadow: "Raised"
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
margins: [4]
}
@GUI::ScrollableContainerWidget {
name: "scrollable_container"
content_widget: @GUI::Widget {
name: "emojis"
layout: @GUI::VerticalBoxLayout {}
}
}
}