From f899d0552a0b30bf0f34968d5a63021005a02e5c Mon Sep 17 00:00:00 2001 From: Bakkeby Date: Sat, 1 Oct 2022 08:37:17 +0200 Subject: [PATCH] alpha: remove debug print statements from changealpha --- patch/alpha.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/patch/alpha.c b/patch/alpha.c index 6a793a4..146bf4b 100644 --- a/patch/alpha.c +++ b/patch/alpha.c @@ -15,7 +15,6 @@ changealpha(const Arg *arg) alpha = clamp(alpha, 0.0, 1.0); xloadcols(); redraw(); - fprintf(stderr, "changealpha %f\n", arg->f); } #if ALPHA_FOCUS_HIGHLIGHT_PATCH @@ -27,6 +26,5 @@ changealphaunfocused(const Arg *arg) alphaUnfocused = clamp(alphaUnfocused, 0.0, 1.0); xloadcols(); redraw(); - fprintf(stderr, "changealphaunfocused %f\n", arg->f); } #endif // ALPHA_FOCUS_HIGHLIGHT_PATCH