diff options
| author | Abhinav <abhinav.prsai@gmail.com> | 2025-06-02 11:00:37 +0100 |
|---|---|---|
| committer | Abhinav <abhinav.prsai@gmail.com> | 2025-06-02 11:00:37 +0100 |
| commit | eaeffa93af07daa50844533e8d9fcb8b8291676c (patch) | |
| tree | f277f154597cc5c3daedaa4294f5fc9777055415 /src/sxwm.c | |
| parent | e666a9635dc6f89d6e5109ca663d59996c1217fe (diff) | |
fixed syntax error from removing debug messages
Diffstat (limited to 'src/sxwm.c')
| -rw-r--r-- | src/sxwm.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1358,12 +1358,14 @@ Bool window_should_float(Window w) if (!user_config.should_float[i] || !user_config.should_float[i][0]) { break; } - + + printf("[DEBUG] Checking window class '%s' and instance '%s' against should_float[%d][0] = '%s'\n", ch.res_class ? ch.res_class : "NULL", ch.res_name ? ch.res_name : "NULL", i, user_config.should_float[i][0]); if ((ch.res_class && !strcmp(ch.res_class, user_config.should_float[i][0])) || (ch.res_name && !strcmp(ch.res_name, user_config.should_float[i][0]))) { + printf("[DEBUG] Window should float based on class/instance match\n"); XFree(ch.res_class); XFree(ch.res_name); return True; |
