diff options
Diffstat (limited to 'grpc-proxy/shell.cpp')
-rw-r--r-- | grpc-proxy/shell.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
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 |