Skip to content

Commit

Permalink
Document File{Dropped,Hovered,HoveredLeft} as unsupported on wayland
Browse files Browse the repository at this point in the history
  • Loading branch information
bbb651 committed Sep 29, 2024
1 parent 7554837 commit afecc0f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions core/src/window/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,29 @@ pub enum Event {
///
/// When the user hovers multiple files at once, this event will be emitted
/// for each file separately.
///
/// ## Platform-specific
///
/// - **Wayland:** Not implemented.
FileHovered(PathBuf),

/// A file has been dropped into the window.
///
/// When the user drops multiple files at once, this event will be emitted
/// for each file separately.
///
/// ## Platform-specific
///
/// - **Wayland:** Not implemented.
FileDropped(PathBuf),

/// A file was hovered, but has exited the window.
///
/// There will be a single `FilesHoveredLeft` event triggered even if
/// multiple files were hovered.
///
/// ## Platform-specific
///
/// - **Wayland:** Not implemented.
FilesHoveredLeft,
}

0 comments on commit afecc0f

Please sign in to comment.