Change dragbar buttons to do next/prev in stead of raise/lower.

SVN revision: 37678
This commit is contained in:
Kim Woelders 2008-11-16 17:25:23 +00:00
parent 25c27e2cfd
commit 8abe7ff142
1 changed files with 2 additions and 4 deletions

View File

@ -149,8 +149,7 @@ DeskControlsCreate(Desk * dsk)
a = ActionCreate(EVENT_MOUSE_UP, 1, 0, 1, 0, 0, NULL, NULL);
ActionclassAddAction(ac, a);
Esnprintf(s, sizeof(s), "desk raise %i", dsk->num);
ActionAddTo(a, s);
ActionAddTo(a, "desk next");
t = _("Click here to raise this desktop\nto the top.\n");
ActionclassSetTooltipString(ac, t);
}
@ -162,8 +161,7 @@ DeskControlsCreate(Desk * dsk)
a = ActionCreate(EVENT_MOUSE_UP, 1, 0, 1, 0, 0, NULL, NULL);
ActionclassAddAction(ac, a);
Esnprintf(s, sizeof(s), "desk lower %i", dsk->num);
ActionAddTo(a, s);
ActionAddTo(a, "desk prev");
t = _("Click here to lower this desktop\nto the bottom.\n");
ActionclassSetTooltipString(ac, t);
}