super_clipboard
super_clipboard copied to clipboard
Separate settings and clipboard data
Currently the clipboard data goes together with the settings and should be separated
pub struct AppSettings {
// ...
// Move to other struct and save into other file
clipboard: Vec<ClipboardItem>,
// ...
}
It's probably also good to make better code for the data saving and loading system.
This fix is probably related to this other issue