diff options
Diffstat (limited to 'grpc-proxy')
-rw-r--r-- | grpc-proxy/main-grpc.cpp | 4 | ||||
-rw-r--r-- | grpc-proxy/shell.cpp | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/grpc-proxy/main-grpc.cpp b/grpc-proxy/main-grpc.cpp index a59c282..d094be5 100644 --- a/grpc-proxy/main-grpc.cpp +++ b/grpc-proxy/main-grpc.cpp @@ -260,7 +260,7 @@ global_add(void *data, struct wl_registry *reg, uint32_t id, sh->shell = static_cast<struct agl_shell *>(wl_registry_bind(reg, id, &agl_shell_interface, - std::min(static_cast<uint32_t>(3), version))); + std::min(static_cast<uint32_t>(5), version))); agl_shell_add_listener(sh->shell, &shell_listener, data); sh->version = version; } else if (strcmp(interface, "wl_output") == 0) { @@ -284,7 +284,7 @@ global_add_init(void *data, struct wl_registry *reg, uint32_t id, sh->shell = static_cast<struct agl_shell *>(wl_registry_bind(reg, id, &agl_shell_interface, - std::min(static_cast<uint32_t>(3), version))); + std::min(static_cast<uint32_t>(5), version))); agl_shell_add_listener(sh->shell, &shell_listener_init, data); sh->version = version; } diff --git a/grpc-proxy/shell.cpp b/grpc-proxy/shell.cpp index cc6ead6..b96ac39 100644 --- a/grpc-proxy/shell.cpp +++ b/grpc-proxy/shell.cpp @@ -61,7 +61,10 @@ Shell::ActivateApp(const std::string &app_id, const std::string &output_name) void Shell::DeactivateApp(const std::string &app_id) { - (void) app_id; + struct agl_shell *shell = this->m_shell.get(); + + agl_shell_deactivate_app(shell, app_id.c_str()); + wl_display_flush(m_shell_data->wl_display); } void |