mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:47:44 +00:00
LibGUI: Convert EmojiInputDialog to GML
This will allow easily adding components such as a search box. Also, increase the number of emoji per row. This does not fix the issue where too many emoji will cause the dialog to grow limitlessly, but it looks a bit more reasonable now with the number of emoji that we have.
This commit is contained in:
parent
e268316865
commit
11d29bc2ea
3 changed files with 22 additions and 9 deletions
13
Userland/Libraries/LibGUI/EmojiInputDialog.gml
Normal file
13
Userland/Libraries/LibGUI/EmojiInputDialog.gml
Normal file
|
@ -0,0 +1,13 @@
|
|||
@GUI::Frame {
|
||||
shape: "Container"
|
||||
shadow: "Raised"
|
||||
fill_with_background_color: true
|
||||
layout: @GUI::VerticalBoxLayout {
|
||||
margins: [4]
|
||||
}
|
||||
|
||||
@GUI::Widget {
|
||||
name: "emojis"
|
||||
layout: @GUI::VerticalBoxLayout {}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue