From: Dana Jansens Date: Fri, 29 Aug 2003 06:48:32 +0000 (+0000) Subject: typo, reading from the wrong member of the actiondata union X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=0b4cd7a0cfd84e2ff9c8893b6bd4ca69460c0e34;p=chaz%2Fopenbox typo, reading from the wrong member of the actiondata union --- 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); }