Merge pull request #725 from jasonrhansen/new-folder

Fix 'New folder...' context menu item in save dialog
This commit is contained in:
Jeremy Soller 2025-01-05 13:16:51 -07:00 committed by GitHub
commit 02a96ba812
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -344,6 +344,7 @@ impl From<AppMessage> for Message {
AppMessage::ZoomDefault(_entity_opt) => Message::ZoomDefault,
AppMessage::ZoomIn(_entity_opt) => Message::ZoomIn,
AppMessage::ZoomOut(_entity_opt) => Message::ZoomOut,
AppMessage::NewItem(_entity_opt, true) => Message::NewFolder,
unsupported => {
log::warn!("{unsupported:?} not supported in dialog mode");
Message::None