Fix: ensure property derive is on all property methods for slash

This commit is contained in:
Luke D. Jones
2024-05-09 09:34:02 +12:00
parent a18692ef1e
commit 37bc5e45b9
8 changed files with 41 additions and 31 deletions

View File

@@ -63,8 +63,8 @@ impl From<PowerZones> for SlintPowerZones {
PowerZones::Lightbar => SlintPowerZones::Lightbar,
PowerZones::Lid => SlintPowerZones::Lid,
PowerZones::RearGlow => SlintPowerZones::RearGlow,
PowerZones::KeyboardAndLightbar => todo!(),
PowerZones::None => todo!(),
PowerZones::KeyboardAndLightbar => SlintPowerZones::KeyboardAndLightbar,
PowerZones::None => SlintPowerZones::Keyboard,
}
}
}