update comment

This commit is contained in:
yggverse 2024-09-19 00:46:58 +03:00
parent 675f18fc31
commit 5aea0e53e4

View file

@ -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;
} }