improv(appearance): place import/export buttons in header

This commit is contained in:
Michael Aaron Murphy 2024-01-18 15:23:21 +01:00 committed by Michael Murphy
parent c00b41a463
commit 805bafd1b6
5 changed files with 67 additions and 49 deletions

View file

@ -27,3 +27,9 @@ pub enum Message {
Panel(desktop::panel::Message),
PanelApplet(desktop::panel::applets_inner::Message),
}
impl From<Message> for crate::Message {
fn from(message: Message) -> Self {
crate::Message::PageMessage(message)
}
}