summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-07-26 19:11:57 -0400
committerDrew DeVault <sir@cmpwn.com>2017-07-26 19:12:31 -0400
commit52a790c07d929c1a11db9b816e31eccf3ed55e6d (patch)
tree4e698295e51018a378b7430055a54f15bdfb4248
parentf229dfc896bbd14085f539e6e56a1bd611e8bf3c (diff)
Remove test clipboard code0.14.0
-rw-r--r--sway/handlers.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index 5fae2f7a1..fd174ac93 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -1083,16 +1083,8 @@ bool handle_pointer_scroll(wlc_handle view, uint32_t time, const struct wlc_modi
return EVENT_PASSTHROUGH;
}
-static void clip_test_cb(void *data, const char *type, int fd) {
- const char *str = data;
- write(fd, str, strlen(str));
- close(fd);
-}
-
static void handle_wlc_ready(void) {
sway_log(L_DEBUG, "Compositor is ready, executing cmds in queue");
- const char *type = "text/plain;charset=utf-8";
- wlc_set_selection("test", &type, 1, &clip_test_cb);
// Execute commands until there are none left
config->active = true;
while (config->cmd_queue->length) {