diff options
author | oga | 2008-05-01 18:01:13 +0000 |
---|---|---|
committer | oga | 2008-05-01 18:01:13 +0000 |
commit | 9b75e9613b34b47c145de16e7d8fea99149b9838 (patch) | |
tree | ed97614ad27ef15b20433a8011322ad2988b46e6 /screen.c | |
parent | 6117df1277a10bfa2de1e5c9b08c9e6a68d12c28 (diff) | |
download | cwm-9b75e9613b34b47c145de16e7d8fea99149b9838.tar.gz |
Rework the alt-tabbing code to be a lot simpler.
Diff mostly from Edd Barrett, with some minor changes from me.
Unfortunately the issue where apps like gvim and xpdf are stealing
keyrelease events causing the ordering to be messed up, but this is a
lot better. A fix for the aforementioned issue shall be forthcoming,
once a good one's been found.
ok okan@, also tested by todd@
Diffstat (limited to 'screen.c')
-rw-r--r-- | screen.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: screen.c,v 1.5 2008/04/16 13:35:37 oga Exp $ + * $Id: screen.c,v 1.6 2008/05/01 18:01:13 oga Exp $ */ #include "headers.h" @@ -69,7 +69,4 @@ screen_updatestackingorder(void) void screen_init(void) { - struct screen_ctx *sc = screen_current(); - - sc->cycle_client = NULL; } |