summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sway/config.h1
-rw-r--r--include/sway/ipc-server.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index e75b0664..ac668c24 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -50,6 +50,7 @@ struct sway_mode {
50 char *name; 50 char *name;
51 list_t *keysym_bindings; 51 list_t *keysym_bindings;
52 list_t *keycode_bindings; 52 list_t *keycode_bindings;
53 bool pango;
53}; 54};
54 55
55struct input_config_mapped_from_region { 56struct input_config_mapped_from_region {
diff --git a/include/sway/ipc-server.h b/include/sway/ipc-server.h
index 026b5554..6469f097 100644
--- a/include/sway/ipc-server.h
+++ b/include/sway/ipc-server.h
@@ -15,6 +15,6 @@ void ipc_event_workspace(struct sway_container *old,
15 struct sway_container *new, const char *change); 15 struct sway_container *new, const char *change);
16void ipc_event_window(struct sway_container *window, const char *change); 16void ipc_event_window(struct sway_container *window, const char *change);
17void ipc_event_barconfig_update(struct bar_config *bar); 17void ipc_event_barconfig_update(struct bar_config *bar);
18void ipc_event_mode(const char *mode); 18void ipc_event_mode(const char *mode, bool pango);
19 19
20#endif 20#endif