mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
implement identity button as navigation entry primary icon
This commit is contained in:
parent
a5415fa4e5
commit
5348417a73
6 changed files with 66 additions and 105 deletions
|
|
@ -25,8 +25,17 @@ impl Request {
|
|||
}
|
||||
|
||||
// Actions
|
||||
pub fn update(&self, progress_fraction: Option<f64>) {
|
||||
self.widget.update(progress_fraction);
|
||||
pub fn update(
|
||||
&self,
|
||||
progress_fraction: Option<f64>,
|
||||
is_identity_applicable: bool,
|
||||
is_identity_active: bool,
|
||||
) {
|
||||
self.widget.update(
|
||||
progress_fraction,
|
||||
is_identity_applicable,
|
||||
is_identity_active,
|
||||
);
|
||||
}
|
||||
|
||||
pub fn clean(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue