[wip] convert to wlr_fbox

This commit is contained in:
Consolatis 2022-07-04 01:09:13 +02:00
parent 7585c7c26a
commit aa6e80d9a1
6 changed files with 22 additions and 22 deletions

View file

@ -7,7 +7,7 @@
enum action_arg_type {
LAB_ACTION_ARG_STR = 0,
LAB_ACTION_ARG_BOX,
LAB_ACTION_ARG_FBOX,
};
struct action_arg {
@ -22,9 +22,9 @@ struct action_arg_str {
char *value;
};
struct action_arg_box {
struct action_arg_fbox {
struct action_arg base;
struct wlr_box value;
struct wlr_fbox value;
};
#endif /* __LABWC_PRIVATE_ACTION_H */