rm the 'focusraise' action, it is redundant.
This commit is contained in:
parent
b7780b749f
commit
2e824eece1
2 changed files with 0 additions and 15 deletions
|
@ -246,11 +246,6 @@ ActionString actionstrings[] =
|
||||||
action_lower,
|
action_lower,
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"focusraise",
|
|
||||||
action_focusraise,
|
|
||||||
NULL
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"close",
|
"close",
|
||||||
action_close,
|
action_close,
|
||||||
|
@ -633,14 +628,6 @@ void action_iconify(union ActionData *data)
|
||||||
client_iconify(data->client.c, TRUE, TRUE);
|
client_iconify(data->client.c, TRUE, TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void action_focusraise(union ActionData *data)
|
|
||||||
{
|
|
||||||
if (data->client.c) {
|
|
||||||
client_focus(data->client.c);
|
|
||||||
stacking_raise(CLIENT_AS_WINDOW(data->client.c));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void action_raise(union ActionData *data)
|
void action_raise(union ActionData *data)
|
||||||
{
|
{
|
||||||
if (data->client.c)
|
if (data->client.c)
|
||||||
|
|
|
@ -137,8 +137,6 @@ void action_raise(union ActionData *data);
|
||||||
/* ClientAction */
|
/* ClientAction */
|
||||||
void action_lower(union ActionData *data);
|
void action_lower(union ActionData *data);
|
||||||
/* ClientAction */
|
/* ClientAction */
|
||||||
void action_focusraise(union ActionData *data);
|
|
||||||
/* ClientAction */
|
|
||||||
void action_close(union ActionData *data);
|
void action_close(union ActionData *data);
|
||||||
/* ClientAction */
|
/* ClientAction */
|
||||||
void action_kill(union ActionData *data);
|
void action_kill(union ActionData *data);
|
||||||
|
|
Loading…
Reference in a new issue