mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 09:35:28 +00:00
restore optional history snaps
This commit is contained in:
parent
0dbc8def65
commit
7803aa1c44
12 changed files with 141 additions and 72 deletions
|
|
@ -24,7 +24,9 @@ pub fn build(mime: &str, download: Option<(&Rc<ItemAction>, &Uri)>) -> StatusPag
|
|||
let action = action.clone();
|
||||
let request = request.clone();
|
||||
move |_| {
|
||||
action.load.activate(Some(&format!("download:{}", request)));
|
||||
action
|
||||
.load
|
||||
.activate(Some(&format!("download:{}", request)), true)
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -388,7 +388,7 @@ impl Gemini {
|
|||
// Select link handler by scheme
|
||||
return match uri.scheme().as_str() {
|
||||
"gemini" | "titan" => {
|
||||
item_action.load.activate(Some(&uri.to_str()))
|
||||
item_action.load.activate(Some(&uri.to_str()), true)
|
||||
}
|
||||
// Scheme not supported, delegate
|
||||
_ => UriLauncher::new(&uri.to_str()).launch(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue