mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-30 13:04:13 +00:00
use global namespace
This commit is contained in:
parent
7ab1928cbc
commit
bfbe2a930d
@ -1,4 +1,8 @@
|
|||||||
use super::{Feature, Page};
|
use super::{Feature, Page};
|
||||||
|
use ggemini::client::{
|
||||||
|
connection::response::{data::Text, meta::Status},
|
||||||
|
Request,
|
||||||
|
};
|
||||||
use gtk::glib::{GString, UriFlags};
|
use gtk::glib::{GString, UriFlags};
|
||||||
use gtk::prelude::{EditableExt, FileExt};
|
use gtk::prelude::{EditableExt, FileExt};
|
||||||
use gtk::{
|
use gtk::{
|
||||||
@ -63,8 +67,6 @@ impl Gemini {
|
|||||||
// Actions
|
// Actions
|
||||||
|
|
||||||
pub fn handle(&self, uri: Uri, feature: Feature, cancellable: Cancellable, is_history: bool) {
|
pub fn handle(&self, uri: Uri, feature: Feature, cancellable: Cancellable, is_history: bool) {
|
||||||
use ggemini::client::connection::response::{data::Text, meta::Status};
|
|
||||||
|
|
||||||
// Move focus out from navigation entry
|
// Move focus out from navigation entry
|
||||||
self.page
|
self.page
|
||||||
.browser_action
|
.browser_action
|
||||||
@ -101,7 +103,7 @@ impl Gemini {
|
|||||||
}
|
}
|
||||||
|
|
||||||
self.client.request_async(
|
self.client.request_async(
|
||||||
ggemini::client::Request::gemini(uri.clone()),
|
Request::gemini(uri.clone()),
|
||||||
Priority::DEFAULT,
|
Priority::DEFAULT,
|
||||||
cancellable.clone(),
|
cancellable.clone(),
|
||||||
// Search for user certificate match request
|
// Search for user certificate match request
|
||||||
|
Loading…
x
Reference in New Issue
Block a user