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

FontEditor: Add a search box to filter Unicode blocks

This commit is contained in:
thankyouverycool 2022-02-16 10:12:46 -05:00 committed by Tim Flynn
parent bb23377b48
commit 0061af170f
3 changed files with 50 additions and 12 deletions

View file

@ -219,9 +219,19 @@
}
}
@GUI::ListView {
name: "unicode_block_listview"
max_width: 175
@GUI::Widget {
name: "unicode_block_container"
fixed_width: 175
layout: @GUI::VerticalBoxLayout {}
@GUI::TextBox {
name: "search_textbox"
placeholder: "Search"
}
@GUI::ListView {
name: "unicode_block_listview"
}
}
}
}