commit 53c4467573c782b71ab6616e78834b432530f8ed
parent d3ea07f8283385d015e1d85b5fe9bc8a776fc7b4
Author: Ryan Dwyer <RyanDwyer@users.noreply.github.com>
Date: Sat, 30 Jun 2018 18:57:04 +1000
Merge pull request #2173 from emersion/fix-floating-no-frame-event
Fix floating views not receiving frame events
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sway/tree/view.c b/sway/tree/view.c
@@ -948,7 +948,7 @@ bool view_is_visible(struct sway_view *view) {
// Check view isn't in a tabbed or stacked container on an inactive tab
struct sway_seat *seat = input_manager_current_seat(input_manager);
struct sway_container *container = view->swayc;
- while (container->type != C_WORKSPACE) {
+ while (container->type != C_WORKSPACE && container->layout != L_FLOATING) {
if (container->parent->layout == L_TABBED ||
container->parent->layout == L_STACKED) {
if (seat_get_active_child(seat, container->parent) != container) {