From 00a868e2fe0abf58987e9c0d11ca5b399e7de676 Mon Sep 17 00:00:00 2001 From: Alexis Jhon Gaspar Date: Sun, 1 Oct 2023 23:37:50 +0800 Subject: [PATCH] Fix window swallowing for dialog --- dwm-flexipatch/config.def.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dwm-flexipatch/config.def.h b/dwm-flexipatch/config.def.h index 49ed91a..5b81356 100644 --- a/dwm-flexipatch/config.def.h +++ b/dwm-flexipatch/config.def.h @@ -503,9 +503,9 @@ static const Rule rules[] = { RULE(.wintype = WTYPE "DOCK", .unmanaged = 1) 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) - RULE(.wintype = WTYPE "SPLASH", .isfloating = 1) + RULE(.wintype = WTYPE "UTILITY", .isfloating = 1, .noswallow = 1) + RULE(.wintype = WTYPE "TOOLBAR", .isfloating = 1, .noswallow = 1) + RULE(.wintype = WTYPE "SPLASH", .isfloating = 1, .noswallow = 1) RULE(.class = "Gimp", .tags = 1 << 4) RULE(.class = "Firefox", .tags = 1 << 7) #if RENAMED_SCRATCHPADS_PATCH