integrate bookmark action

This commit is contained in:
yggverse 2024-11-12 18:02:35 +02:00
parent c279576ee2
commit 3db4c2c6be
9 changed files with 163 additions and 20 deletions

View file

@ -49,6 +49,11 @@ impl Window {
}
});
action.bookmark().connect_activate({
let tab = tab.clone();
move |position| tab.bookmark(position)
});
action.pin().connect_activate({
let tab = tab.clone();
move |position| tab.pin(position)