fix(swap-layouts): properly identify plugin aliases with initial cwd (#3250)

* fix(swap-layouts): properly identify plugin aliases with initial cwd

* style(fmt): rustfmt
This commit is contained in:
Aram Drevekenin 2024-04-10 17:00:04 +02:00 committed by GitHub
parent 2b6d4ad8e5
commit 57676f161f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -435,9 +435,7 @@ pub struct PluginAlias {
impl PartialEq for PluginAlias { impl PartialEq for PluginAlias {
fn eq(&self, other: &Self) -> bool { fn eq(&self, other: &Self) -> bool {
self.name == other.name self.name == other.name && self.configuration == other.configuration
&& self.configuration == other.configuration
&& self.initial_cwd == other.initial_cwd
} }
} }