mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
init search on page feature once
This commit is contained in:
parent
4b357f8229
commit
f767c11789
23 changed files with 449 additions and 266 deletions
|
|
@ -14,6 +14,7 @@ impl Widget {
|
|||
// Components
|
||||
navigation: &impl IsA<gtk::Widget>,
|
||||
content: &impl IsA<gtk::Widget>,
|
||||
search: &impl IsA<gtk::Widget>,
|
||||
input: &impl IsA<gtk::Widget>,
|
||||
) -> Self {
|
||||
// Init self
|
||||
|
|
@ -24,6 +25,7 @@ impl Widget {
|
|||
|
||||
g_box.append(navigation);
|
||||
g_box.append(content);
|
||||
g_box.append(search);
|
||||
g_box.append(input);
|
||||
|
||||
Self { g_box }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue