Rm explicit Prefs Default trait impl
This commit is contained in:
parent
c010eb6ba9
commit
00ffe55ecd
13
src/prefs.rs
13
src/prefs.rs
@ -28,7 +28,7 @@ impl Default for MiddleClickAction {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#[derive(Deserialize, Debug, Serialize)]
|
#[derive(Deserialize, Debug, Serialize, Default)]
|
||||||
#[serde(default)]
|
#[serde(default)]
|
||||||
pub struct Prefs {
|
pub struct Prefs {
|
||||||
pub device_prefs: DevicePrefs,
|
pub device_prefs: DevicePrefs,
|
||||||
@ -38,17 +38,6 @@ pub struct Prefs {
|
|||||||
// TODO: HotKeys?
|
// TODO: HotKeys?
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for Prefs {
|
|
||||||
fn default() -> Prefs {
|
|
||||||
return Prefs {
|
|
||||||
device_prefs: DevicePrefs::default(),
|
|
||||||
view_prefs: ViewPrefs::default(),
|
|
||||||
behavior_prefs: BehaviorPrefs::default(),
|
|
||||||
notify_prefs: NotifyPrefs::default(),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#[derive(Deserialize, Debug, Serialize)]
|
#[derive(Deserialize, Debug, Serialize)]
|
||||||
#[serde(default)]
|
#[serde(default)]
|
||||||
|
Loading…
Reference in New Issue
Block a user