summaryrefslogtreecommitdiffstats
path: root/sway/handlers.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/handlers.c')
-rw-r--r--sway/handlers.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/sway/handlers.c b/sway/handlers.c
index b7bb1fde..8f2f8a21 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -176,6 +176,28 @@ static void handle_output_focused(wlc_handle output, bool focus) {
176 } 176 }
177} 177}
178 178
179static bool client_is_background(struct wl_client *client) {
180 int i;
181 for (i = 0; i < desktop_shell.backgrounds->length; i++) {
182 struct background_config *config = desktop_shell.backgrounds->items[i];
183 if (config->client == client) {
184 return true;
185 }
186 }
187 return false;
188}
189
190static bool client_is_panel(struct wl_client *client) {
191 int i;
192 for (i = 0; i < desktop_shell.panels->length; i++) {
193 struct panel_config *config = desktop_shell.panels->items[i];
194 if (config->client == client) {
195 return true;
196 }
197 }
198 return false;
199}
200
179static bool handle_view_created(wlc_handle handle) { 201static bool handle_view_created(wlc_handle handle) {
180 // if view is child of another view, the use that as focused container 202 // if view is child of another view, the use that as focused container
181 wlc_handle parent = wlc_view_get_parent(handle); 203 wlc_handle parent = wlc_view_get_parent(handle);
@@ -186,6 +208,10 @@ static bool handle_view_created(wlc_handle handle) {
186 struct wl_client *client = wlc_view_get_wl_client(handle); 208 struct wl_client *client = wlc_view_get_wl_client(handle);
187 pid_t pid; 209 pid_t pid;
188 210
211 if (client_is_background(client) || client_is_panel(client)) {
212 return true;
213 }
214
189 // Get parent container, to add view in 215 // Get parent container, to add view in
190 if (parent) { 216 if (parent) {
191 focused = swayc_by_handle(parent); 217 focused = swayc_by_handle(parent);