summary refs log tree commit diff
path: root/group.c
diff options
context:
space:
mode:
authoroga <oga>2008-01-14 15:21:10 +0000
committeroga <oga>2008-01-14 15:21:10 +0000
commit1eed217b1c54d32d3c9269be79c3cb298b4b2805 (patch)
tree2d60320821b0fa134774a1a50ac4016c58793d2c /group.c
parente5cabb0f43a4e584f09bda9fc3423f0df7a295d3 (diff)
downloadcwm-1eed217b1c54d32d3c9269be79c3cb298b4b2805.tar.gz
cwm-1eed217b1c54d32d3c9269be79c3cb298b4b2805.tar.xz
cwm-1eed217b1c54d32d3c9269be79c3cb298b4b2805.zip
Rewrite most of grab_menu in grab.c (it was partly 9wm code).
This should work functionally the same, with a few simplifications.

Changes:
- we don't care if you're holding another button when you release the
  menu key if you don't want to select anything, move off the menu.
- remove the hysteresis from the menu selection (before you had to move
  more than three pixels onto a new menu entry before it selected it)
- simplify a lot of the selection code
- kill dead code.
- do what the XXX comment said and cache the screensize (i may tweak
  this later).

As far as I can tell, the only code remaining from 9wm is the list of
fonts in calmwm.c. Others appear to concur.

ok marc@, looked over and tested by a few others. Reminders from okan@.
Diffstat (limited to 'group.c')
-rw-r--r--group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/group.c b/group.c
index 64857c1..c9cccef 100644
--- a/group.c
+++ b/group.c
@@ -92,7 +92,7 @@ _group_purge(struct group_ctx *gc)
 	struct client_ctx *cc;
 
 	if (gc == NULL)
-		errx(1, "_group_commit: ctx is null");
+		errx(1, "_group_purge: ctx is null");
 
 	TAILQ_FOREACH(cc, &gc->clients, group_entry)
 		if (cc->groupcommit == 0)