Skip to content

Commit 67894aa

Browse files
gdk: fix transfer type in Drop::read_async
the mimetype out param is transfer none
1 parent 8959ff8 commit 67894aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gdk4/src/drop.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ impl Drop {
3838
&mut error,
3939
);
4040
let result = if error.is_null() {
41-
Ok((from_glib_full(ret), from_glib_full(out_mime_type)))
41+
Ok((from_glib_full(ret), from_glib_none(out_mime_type)))
4242
} else {
4343
Err(from_glib_full(error))
4444
};

0 commit comments

Comments
 (0)