decorate actions were backwards
This commit is contained in:
parent
8756d41fd4
commit
e85b430648
1 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ static gboolean run_func_on(ObActionsData *data, gpointer options)
|
||||||
{
|
{
|
||||||
if (data->client) {
|
if (data->client) {
|
||||||
actions_client_move(data, TRUE);
|
actions_client_move(data, TRUE);
|
||||||
client_set_undecorated(data->client, TRUE);
|
client_set_undecorated(data->client, FALSE);
|
||||||
actions_client_move(data, FALSE);
|
actions_client_move(data, FALSE);
|
||||||
}
|
}
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
@ -29,7 +29,7 @@ static gboolean run_func_off(ObActionsData *data, gpointer options)
|
||||||
{
|
{
|
||||||
if (data->client) {
|
if (data->client) {
|
||||||
actions_client_move(data, TRUE);
|
actions_client_move(data, TRUE);
|
||||||
client_set_undecorated(data->client, FALSE);
|
client_set_undecorated(data->client, TRUE);
|
||||||
actions_client_move(data, FALSE);
|
actions_client_move(data, FALSE);
|
||||||
}
|
}
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
Loading…
Reference in a new issue