1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 21:57:44 +00:00

TextEditor: Move the "find" and "replace" widget containers to JSON GUI

This commit is contained in:
Andreas Kling 2020-09-14 13:01:32 +02:00
parent 6590eb8eb7
commit 8a7935a29f
2 changed files with 27 additions and 11 deletions

View file

@ -40,7 +40,31 @@
"layout": {
"class": "GUI::VerticalBoxLayout",
"margins": [ 2, 2, 2, 4 ]
}
},
"children": [
{
"class": "GUI::Widget",
"name": "find_widget",
"fill_with_background_color": true,
"horizontal_size_policy": "Fill",
"vertical_size_policy": "Fixed",
"preferred_height": 22,
"layout": {
"class": "GUI::HorizontalBoxLayout"
}
},
{
"class": "GUI::Widget",
"name": "replace_widget",
"fill_with_background_color": true,
"horizontal_size_policy": "Fill",
"vertical_size_policy": "Fixed",
"preferred_height": 22,
"layout": {
"class": "GUI::HorizontalBoxLayout"
}
}
]
},
{
"class": "GUI::StatusBar",