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
{
let tab = Notebook::builder().scrollable(true).build();
let tab = Notebook::builder()
.scrollable(
true
)
.build();
// Add test tab @TODO restore from session
append(
tab.clone(),
true
); // @TODO
);
return tab;
}