diff options
| author | uint23 <72694427+uint23@users.noreply.github.com> | 2025-06-01 20:51:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-01 20:51:37 +0100 |
| commit | 5c36deeb356fa0095008db817b6fee5c7d12958a (patch) | |
| tree | 67a407336ad43bd07ba7b23a0c387c7dcffa8a43 /src | |
| parent | 26d38b5b0831d9afb9a91fc840cdbd3268d5c359 (diff) | |
remove DEBUG messages
Diffstat (limited to 'src')
| -rw-r--r-- | src/sxwm.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1358,14 +1358,12 @@ 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; |
