diff options
-rw-r--r-- | rMD-exp/ChangeLog | 2 | ||||
-rw-r--r-- | rMD-exp/include/recordmydesktop.h | 1 | ||||
-rw-r--r-- | rMD-exp/src/wm_check.c | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/rMD-exp/ChangeLog b/rMD-exp/ChangeLog index f8176e6..bdd5f6f 100644 --- a/rMD-exp/ChangeLog +++ b/rMD-exp/ChangeLog @@ -72,6 +72,8 @@ libogg calls. instead it saves under a number postfixed file. *Opening the sound device doesn't block anymore. *A few new options were added related to caching. +*Program now checks if it is run uder a known 3d compositing window manager +and set behavior accordingly, to reduce the need for extra options at launch. *Updated documentation. *Removed uneeded bitmap screenshot function. diff --git a/rMD-exp/include/recordmydesktop.h b/rMD-exp/include/recordmydesktop.h index 5069bc1..374efeb 100644 --- a/rMD-exp/include/recordmydesktop.h +++ b/rMD-exp/include/recordmydesktop.h @@ -52,6 +52,7 @@ #include <zlib.h> #include <X11/Xlib.h> #include <X11/Xlibint.h> +#include <X11/Xatom.h> #include <X11/extensions/Xfixes.h> #include <X11/extensions/Xdamage.h> #include <X11/extensions/XShm.h> diff --git a/rMD-exp/src/wm_check.c b/rMD-exp/src/wm_check.c index 2baa105..ee6b0ba 100644 --- a/rMD-exp/src/wm_check.c +++ b/rMD-exp/src/wm_check.c @@ -26,7 +26,6 @@ #include <recordmydesktop.h> -#include <X11/Xatom.h> char *rmdWMCheck(Display *dpy,Window root){ |