diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-08-29 06:48:32 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-08-29 06:48:32 +0000 |
| commit | 0b4cd7a0cfd84e2ff9c8893b6bd4ca69460c0e34 (patch) | |
| tree | 3dbea00572426222bd8693e69f4cab3015bb040c | |
| parent | 5e06be6abb68a95aa9cafc5a6f0c5e295ebe9bee (diff) | |
typo, reading from the wrong member of the actiondata union
| -rw-r--r-- | openbox/action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/action.c b/openbox/action.c index eea3f9fc..dedf2c3b 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -991,7 +991,7 @@ void action_send_to_desktop(union ActionData *data) if (data->sendto.desk < screen_num_desktops || data->sendto.desk == DESKTOP_ALL) { - client_set_desktop(c, data->sendto.desk, data->sendtodir.follow); + client_set_desktop(c, data->sendto.desk, data->sendto.follow); if (data->sendto.follow) screen_set_desktop(data->sendto.desk); } |
