1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 04:20:27 +01:00

wmaker: Add drag-nd-drop support

This patch is removing the experimental status of
drag-nd-drop support on the dock and adding an option
to disable the feature from the configure step.
This commit is contained in:
David Maciejak
2014-08-14 12:30:17 +07:00
committed by Carlos R. Mafra
parent 166abcd17a
commit d3e5e73bfc
2 changed files with 12 additions and 3 deletions

View File

@@ -501,6 +501,18 @@ dnl ============================
AC_ARG_ENABLE(modelock, AS_HELP_STRING([--enable-modelock], [XKB keyboard language status support]),
AC_DEFINE(XKB_MODELOCK, 1, [whether XKB language MODELOCK should be enabled]))
dnl XDND Drag-nd-Drop support
dnl ============================
AC_ARG_ENABLE([xdnd],
[AS_HELP_STRING([--disable-xdnd], [disable Drag-nd-Drop support])],
[AS_CASE(["$enableval"],
[yes|no], [],
[AC_MSG_ERROR([bad value $enableval for --disable-xdnd]) ]) ],
[enable_xdnd=yes
supported_xext="$supported_xext XDnD"
AC_DEFINE(XDND, 1, [whether Drag-nd-Drop support should be enabled])
])
dnl XShape support
dnl ==============
AC_ARG_ENABLE([shape],

View File

@@ -36,9 +36,6 @@
/* If you want animations for iconification, shading, icon arrangement etc. */
#define ANIMATIONS
/* support for XDND drop in the Dock. Experimental */
/*#define XDND*/
/* support for Motif window manager (mwm) window hints */
#define MWM_HINTS