From 0425050ad8ed0eb05629fc8a74877b1a2349017a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 7 Dec 2019 14:53:49 +0100 Subject: [PATCH] Use native wxDragImage by default in the sample There doesn't seem to be any reason to default to the generic version. Closes https://github.com/wxWidgets/wxWidgets/pull/1671 --- samples/dragimag/dragimag.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/dragimag/dragimag.cpp b/samples/dragimag/dragimag.cpp index da6d30451d..a39554653c 100644 --- a/samples/dragimag/dragimag.cpp +++ b/samples/dragimag/dragimag.cpp @@ -24,7 +24,7 @@ // Under Windows, change this to 1 // to use wxGenericDragImage -#define wxUSE_GENERIC_DRAGIMAGE 1 +#define wxUSE_GENERIC_DRAGIMAGE 0 #if wxUSE_GENERIC_DRAGIMAGE #include "wx/generic/dragimgg.h"