mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-23 09:34:13 +00:00
fix adw_tab_view_insert: assertion 'position >= self->n_pinned_pages'
This commit is contained in:
parent
7079cc7230
commit
67fa869c57
@ -25,7 +25,16 @@ impl Widget {
|
||||
is_selected: bool,
|
||||
) -> Arc<Self> {
|
||||
let gobject = match position {
|
||||
Some(number) => tab_view.insert(child, number),
|
||||
Some(value) => {
|
||||
// If given `position` match pinned tab, GTK will panic with notice:
|
||||
// adw_tab_view_insert: assertion 'position >= self->n_pinned_pages'
|
||||
// as the solution, prepend new page after pinned tabs on this case
|
||||
if value > tab_view.n_pinned_pages() {
|
||||
tab_view.insert(child, value)
|
||||
} else {
|
||||
tab_view.prepend(child)
|
||||
}
|
||||
}
|
||||
None => tab_view.append(child),
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user