Remove unnecessary Arc<Self>
This commit is contained in:
parent
7a40050799
commit
149f58169f
1 changed files with 1 additions and 1 deletions
|
@ -306,7 +306,7 @@ impl Button {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn select(self: &Arc<Self>) -> Result<()> {
|
||||
pub fn select(&self) -> Result<()> {
|
||||
self.selectable.select()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue