drop label mod

This commit is contained in:
yggverse 2024-10-11 01:16:23 +03:00
parent b5055715d8
commit 5529fcaa71
2 changed files with 8 additions and 22 deletions

View file

@ -106,8 +106,9 @@ impl Tab {
self.index.borrow_mut().insert(item.id(), item.clone());
// Append new Notebook page
/* @TODO
self.widget
.append(item.label(), item.page(), item.is_initially_current());
.append(item.label(), item.page(), item.is_initially_current()); */
if page_navigation_request_text.is_none() {
item.page_navigation_request_grab_focus(); // @TODO
@ -223,11 +224,12 @@ impl Tab {
self.index.borrow_mut().insert(item.id(), item.clone());
// Append new Notebook page
/* @TODO
self.widget.append(
item.label(),
item.page(),
item.is_initially_current(),
);
); */
}
}
Err(e) => return Err(e.to_string()),