super_clipboard icon indicating copy to clipboard operation
super_clipboard copied to clipboard

Separate settings and clipboard data

Open SergioRibera opened this issue 1 year ago • 0 comments

Currently the clipboard data goes together with the settings and should be separated

settings.rs

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

SergioRibera avatar Sep 29 '23 03:09 SergioRibera