Can confirm it for ballistics, bomberclone and FretsOnFire.
While waiting for a real solution, maybe a little nocompiz script helps, can be 
linked to /usr/local/bin so that problematic programs can be run by nocompiz 
fretsonfire e.g.

#!/bin/bash
# Starts a programm having problems with compiz
if [ -z "${1}" ]; then
 echo "Usage:"
 echo " $0 program <parameter>"
 exit 1
fi

#First get the default window manager exept compiz
wmCmds="/usr/bin/kwin /usr/bin/metacity /usr/bin/xfwm4" #maybe I missed one

for wm in ${wmCmds}; do
  if [ -x "${wm}" ]; then
        DefaultWM=${wm}
        break
 fi
done

${DefaultWM} --replace &
sleep 1 #wait a bit to initialize the window manager
${*}
compiz --replace &

-- 
SDL applications auto-leave fullscreen if set to native 1280x1024 resolution 
and Compiz is enabled.
https://bugs.launchpad.net/bugs/216322
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to