mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
update comment
This commit is contained in:
parent
675f18fc31
commit
5aea0e53e4
1 changed files with 9 additions and 2 deletions
|
|
@ -5,12 +5,19 @@ use gtk::Notebook;
|
||||||
|
|
||||||
pub fn new() -> Notebook
|
pub fn new() -> Notebook
|
||||||
{
|
{
|
||||||
let tab = Notebook::builder().scrollable(true).build();
|
let tab = Notebook::builder()
|
||||||
|
|
||||||
|
.scrollable(
|
||||||
|
true
|
||||||
|
)
|
||||||
|
|
||||||
|
.build();
|
||||||
|
|
||||||
|
// Add test tab @TODO restore from session
|
||||||
append(
|
append(
|
||||||
tab.clone(),
|
tab.clone(),
|
||||||
true
|
true
|
||||||
); // @TODO
|
);
|
||||||
|
|
||||||
return tab;
|
return tab;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue