mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 01:25:27 +00:00
move identity feature to request area
This commit is contained in:
parent
78957ff85b
commit
2dc6154d54
32 changed files with 59 additions and 84 deletions
13
src/app/browser/window/tab/item/action/identity.rs
Normal file
13
src/app/browser/window/tab/item/action/identity.rs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
use gtk::{gio::SimpleAction, glib::uuid_string_random};
|
||||
|
||||
pub trait Identity {
|
||||
fn identity() -> Self;
|
||||
}
|
||||
|
||||
impl Identity for SimpleAction {
|
||||
fn identity() -> Self {
|
||||
let identity = SimpleAction::new(&uuid_string_random(), None);
|
||||
identity.set_enabled(false);
|
||||
identity
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue