Skip to content

Commit 27e1792

Browse files
Remove warning about cpal drag and drop (#1329)
* Remove warning about cpal drag and drop Given that the issue rust-windowing/winit#1255 was closed by rust-windowing/winit#1524, it would make sense to remove the warning about the issue from NativeOptions * Change `NativeOptions::drag_and_drop_support` default to true
1 parent d4bbea3 commit 27e1792

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

eframe/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ NOTE: [`egui_web`](../egui_web/CHANGELOG.md), [`egui-winit`](../egui-winit/CHANG
55

66

77
## Unreleased
8+
* Change default for `NativeOptions::drag_and_drop_support` to `true` ([#1329](https://github.com/emilk/egui/pull/1329))
89

910

1011
## 0.17.0 - 2022-02-22

epi/src/lib.rs

+8-5
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,13 @@ pub struct NativeOptions {
221221
/// If false it will be difficult to move and resize the app.
222222
pub decorated: bool,
223223

224-
/// On Windows: enable drag and drop support.
225-
/// Default is `false` to avoid issues with crates such as [`cpal`](https://github.com/RustAudio/cpal) which
226-
/// will hang when combined with drag-and-drop.
227-
/// See <https://github.com/rust-windowing/winit/issues/1255>.
224+
/// On Windows: enable drag and drop support. Drag and drop can
225+
/// not be disabled on other platforms.
226+
///
227+
/// See [winit's documentation][drag_and_drop] for information on why you
228+
/// might want to disable this on windows.
229+
///
230+
/// [drag_and_drop]: https://docs.rs/winit/latest/x86_64-pc-windows-msvc/winit/platform/windows/trait.WindowBuilderExtWindows.html#tymethod.with_drag_and_drop
228231
pub drag_and_drop_support: bool,
229232

230233
/// The application icon, e.g. in the Windows task bar etc.
@@ -257,7 +260,7 @@ impl Default for NativeOptions {
257260
always_on_top: false,
258261
maximized: false,
259262
decorated: true,
260-
drag_and_drop_support: false,
263+
drag_and_drop_support: true,
261264
icon_data: None,
262265
initial_window_pos: None,
263266
initial_window_size: None,

0 commit comments

Comments
 (0)