diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-02-20 10:33:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-20 10:33:07 -0500 |
commit | b57761e833f0198d2bd9ac95b1926cc5b08d6ac3 (patch) | |
tree | 97c080f15e045fa3dc963d607b3d06a7c5a7862e /sway | |
parent | be0588efa915b1d215975cd3678b1eb5ae440434 (diff) | |
parent | 444e00662cc8e87d4334617904bf3578cb022911 (diff) |
Merge pull request #3735 from emersion/primary-selection-v1
Add wp-primary-selection-unstable-v1
Diffstat (limited to 'sway')
-rw-r--r-- | sway/server.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sway/server.c b/sway/server.c index 712d8022..0fcd5800 100644 --- a/sway/server.c +++ b/sway/server.c @@ -10,13 +10,14 @@ #include <wlr/types/wlr_compositor.h> #include <wlr/types/wlr_data_control_v1.h> #include <wlr/types/wlr_export_dmabuf_v1.h> -#include <wlr/types/wlr_gamma_control.h> #include <wlr/types/wlr_gamma_control_v1.h> +#include <wlr/types/wlr_gamma_control.h> #include <wlr/types/wlr_gtk_primary_selection.h> #include <wlr/types/wlr_idle.h> #include <wlr/types/wlr_layer_shell_v1.h> -#include <wlr/types/wlr_relative_pointer_v1.h> #include <wlr/types/wlr_pointer_constraints_v1.h> +#include <wlr/types/wlr_primary_selection_v1.h> +#include <wlr/types/wlr_relative_pointer_v1.h> #include <wlr/types/wlr_screencopy_v1.h> #include <wlr/types/wlr_server_decoration.h> #include <wlr/types/wlr_xcursor_manager.h> @@ -122,6 +123,7 @@ bool server_init(struct sway_server *server) { wlr_export_dmabuf_manager_v1_create(server->wl_display); wlr_screencopy_manager_v1_create(server->wl_display); wlr_data_control_manager_v1_create(server->wl_display); + wlr_primary_selection_v1_device_manager_create(server->wl_display); server->socket = wl_display_add_socket_auto(server->wl_display); if (!server->socket) { |