Make symlinks optional on itch import (#178)

This commit is contained in:
Philip Kristoffersen
2022-07-11 08:56:35 +02:00
committed by GitHub
parent e31abff625
commit bcb2874c19
+5
View File
@@ -199,7 +199,12 @@ self.settings.heroic.default_launch_through_heroic{
if ui.text_edit_singleline(itch_location).changed() {
self.settings.itch.location = Some(itch_location.to_string());
}
});
#[cfg(target_family = "unix")]
{
ui.checkbox(&mut self.settings.itch.create_symlinks, "Create symlinks");
}
}
ui.add_space(SECTION_SPACING);
}