LibGUI: Wrap the EmojiInputDialog in a scrollable container

This will prevent the dialog from growing endlessly as emoji are added.
This commit is contained in:
Timothy Flynn
2022-09-01 09:09:51 -04:00
committed by Linus Groh
parent 11d29bc2ea
commit 3aaaacdb3a
Notes: sideshowbarker 2024-07-17 07:22:45 +09:00
2 changed files with 12 additions and 9 deletions

View File

@@ -6,8 +6,11 @@
margins: [4]
}
@GUI::Widget {
name: "emojis"
layout: @GUI::VerticalBoxLayout {}
@GUI::ScrollableContainerWidget {
name: "scrollable_container"
content_widget: @GUI::Widget {
name: "emojis"
layout: @GUI::VerticalBoxLayout {}
}
}
}