drop reorderable argument

This commit is contained in:
yggverse 2024-10-08 00:59:42 +03:00
parent 65502c247d
commit 22d8d147e3
2 changed files with 3 additions and 10 deletions

View File

@ -107,7 +107,7 @@ impl Tab {
// Append new Notebook page
self.widget
.append(item.label(), item.page(), is_initially_current, true);
.append(item.label(), item.page(), item.is_initially_current());
if page_navigation_request_text.is_none() {
item.page_navigation_request_grab_focus(); // @TODO
@ -229,7 +229,6 @@ impl Tab {
item.label(),
item.page(),
item.is_initially_current(),
true,
);
}
}

View File

@ -13,18 +13,12 @@ impl Widget {
}
// Actions
pub fn append(
&self,
label: &Box,
page: &Box,
is_current_page: bool,
is_reorderable: bool,
) -> u32 {
pub fn append(&self, label: &Box, page: &Box, is_current_page: bool) -> u32 {
// Append new Notebook page
let page_number = self.gobject.append_page(page, Some(label));
// Additional setup for Notebook tab created
self.gobject.set_tab_reorderable(page, is_reorderable);
self.gobject.set_tab_reorderable(page, true);
if is_current_page {
self.gobject.set_current_page(Some(page_number));