fix: clone autostart command when cloning profile

This commit is contained in:
Gabriele Musco 2024-06-14 14:54:20 +02:00
parent d2c1f5b4a5
commit b4d82a6b52
No known key found for this signature in database
GPG key ID: 1068D795C80E51DE

View file

@ -378,6 +378,7 @@ impl Profile {
dup.opencomposite_branch = self.opencomposite_branch.clone();
dup.lighthouse_driver = self.lighthouse_driver;
dup.xrservice_launch_options = self.xrservice_launch_options.clone();
dup.autostart_command = self.autostart_command.clone();
dup
}