Skip to content

Commit

Permalink
version 1.5.2
Browse files Browse the repository at this point in the history
- closes #6
  • Loading branch information
DasEtwas committed Feb 21, 2021
1 parent c958df1 commit 3135f9a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "enginesound"
version = "1.5.1"
version = "1.5.2"
authors = ["https://github.com/DasEtwas/"]
edition = "2018"
description = """
Expand Down
4 changes: 3 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,9 @@ fn main() {
.with_resizable(true);

#[cfg(target_os = "windows")]
window = window.with_drag_and_drop(drag_and_drop);
{
window = window.with_drag_and_drop(drag_and_drop);
}
#[cfg(not(target_os = "windows"))]
if drag_and_drop {
eprintln!("Drag-and-Drop is only supported on windows");
Expand Down

0 comments on commit 3135f9a

Please sign in to comment.