aboutsummaryrefslogtreecommitdiff
path: root/src/state.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/state.h')
-rw-r--r--src/state.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/state.h b/src/state.h
index 9ce4cc9..14f7d4d 100644
--- a/src/state.h
+++ b/src/state.h
@@ -11,12 +11,13 @@ typedef struct State State;
struct State {
Window *win;
- Drawable *draw;
+ Drawer *draw;
GList *btns;
gint id;
+ bool relayout;
};
-State *state_create(Window *win, Drawable *draw);
+State *state_create(Window *win, Drawer *draw);
void state_add_button(State *state, Button *btn);