mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-15 17:20:08 +00:00
drop reorderable argument
This commit is contained in:
parent
65502c247d
commit
22d8d147e3
@ -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,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -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));
|
||||
|
Loading…
x
Reference in New Issue
Block a user