aboutsummaryrefslogtreecommitdiff
path: root/include/sway
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-07-06 06:28:01 -0700
committerGitHub <noreply@github.com>2018-07-06 06:28:01 -0700
commit3d2595b1028ce1f7cf0ceff673e7180c6c991afb (patch)
treea645930a9b105185a5f2dbddbe8ca8acf50a4559 /include/sway
parentf63b209d51bab84aacb001adfd443c7f4c9a8cfe (diff)
parenta06d45a14d1f222a42d23bf1f49bb6995dc3b27b (diff)
Merge branch 'master' into remove-input-fix
Diffstat (limited to 'include/sway')
-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 {
char *name;
list_t *keysym_bindings;
list_t *keycode_bindings;
+ bool pango;
};
struct 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,
struct sway_container *new, const char *change);
void ipc_event_window(struct sway_container *window, const char *change);
void ipc_event_barconfig_update(struct bar_config *bar);
-void ipc_event_mode(const char *mode);
+void ipc_event_mode(const char *mode, bool pango);
#endif