]>
Dogcows Code - chaz/openbox/blob - openbox/actions/raise.c
1 #include "openbox/actions.h"
2 #include "openbox/stacking.h"
3 #include "openbox/window.h"
5 static gboolean
run_func(ObActionsData
*data
, gpointer options
);
7 void action_raise_startup(void)
9 actions_register("Raise",
15 /* Always return FALSE because its not interactive */
16 static gboolean
run_func(ObActionsData
*data
, gpointer options
)
19 actions_client_move(data
, TRUE
);
20 stacking_raise(CLIENT_AS_WINDOW(data
->client
));
21 actions_client_move(data
, FALSE
);
This page took 0.033729 seconds and 4 git commands to generate.