From 180dc064f3df6e9b6614a968144195faff316df6 Mon Sep 17 00:00:00 2001 From: Alexis Jhon Gaspar Date: Sun, 1 Oct 2023 23:35:17 +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 ad5a426..f8cbe51 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) + RULE(.wintype = WTYPE "DIALOG", .isfloating = 1, .noswallow = 0) RULE(.class = "Xmessage", .isfloating = 1) RULE(.wintype = WTYPE "UTILITY", .isfloating = 1) RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1)