From a6cf80e7544fe9a46e191e892a88298d2614caed Mon Sep 17 00:00:00 2001 From: Alexis Jhon Gaspar Date: Sun, 1 Oct 2023 23:35:51 +0800 Subject: [PATCH] Fix window swallowing for dialog --- dwm-flexipatch/config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dwm-flexipatch/config.def.h b/dwm-flexipatch/config.def.h index f8cbe51..49ed91a 100644 --- a/dwm-flexipatch/config.def.h +++ b/dwm-flexipatch/config.def.h @@ -501,7 +501,7 @@ static const Rule rules[] = { RULE(.class = "St", .isterminal = 1) RULE(.wintype = WTYPE "DESKTOP", .unmanaged = 2) RULE(.wintype = WTYPE "DOCK", .unmanaged = 1) - RULE(.wintype = WTYPE "DIALOG", .isfloating = 1, .noswallow = 0) + RULE(.wintype = WTYPE "DIALOG", .isfloating = 1, .noswallow = 1) RULE(.class = "Xmessage", .isfloating = 1) RULE(.wintype = WTYPE "UTILITY", .isfloating = 1) RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1)