Merge pull request #57 from shuoli84/trunk

fix ios filesystem build break
This commit is contained in:
Ryan McGrath 2022-09-18 16:09:28 -07:00 committed by GitHub
commit c7394792a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -10,5 +10,7 @@ pub use traits::*;
pub mod save; pub mod save;
pub use save::FileSavePanel; pub use save::FileSavePanel;
#[cfg(feature = "appkit")]
pub mod select; pub mod select;
#[cfg(feature = "appkit")]
pub use select::FileSelectPanel; pub use select::FileSelectPanel;

View file

@ -131,7 +131,7 @@ pub mod events;
pub mod defaults; pub mod defaults;
#[cfg(feature = "appkit")] #[cfg(any(feature = "appkit", feature = "uikit"))]
pub mod filesystem; pub mod filesystem;
pub mod foundation; pub mod foundation;