merge stable version #2

Merged
doryan merged 97 commits from experimental into main 2024-08-28 18:54:00 +03:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 09801147b9 - Show all commits

View File

@ -130,7 +130,7 @@ impl InfoBarBuilder {
}
}
impl Product<InfoBarBuilder, &'static Revealer> for InfoBar {
impl Product<InfoBarBuilder, Revealer> for InfoBar {
fn builder() -> InfoBarBuilder {
InfoBarBuilder {
label: Label::builder(),
@ -139,7 +139,7 @@ impl Product<InfoBarBuilder, &'static Revealer> for InfoBar {
}
}
fn get(self) -> &'static Revealer {
fn get(&self) -> &'static Revealer {
&INFO_BAR_INSTANCE.instance
}
}

View File

@ -29,8 +29,8 @@ impl Product<InputBuilder, Box> for Input {
}
}
fn get(self) -> Box {
self.component
fn get(&self) -> &Box {
&self.component
}
}