From df6544e6666e7ae4860de1322f49893f1a1057e1 Mon Sep 17 00:00:00 2001 From: Jaimos Skriletz Date: Tue, 7 Nov 2023 09:15:29 -0700 Subject: [PATCH] Remove pan_frame debugging. --- fvwm/events.c | 2 -- fvwm/virtual.c | 7 +------ 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/fvwm/events.c b/fvwm/events.c index c637ead3c..227a44bf6 100644 --- a/fvwm/events.c +++ b/fvwm/events.c @@ -2338,8 +2338,6 @@ void HandleEnterNotify(const evh_args_t *ea) int p = HandlePaging( &e, edge_scroll, &junk, &delta, True, True, False, Scr.ScrollDelay); - fvwm_debug(__func__, "handled paging for %s (%d)", - m->si->name, p); return; } } diff --git a/fvwm/virtual.c b/fvwm/virtual.c index 551c98301..4d02311d0 100644 --- a/fvwm/virtual.c +++ b/fvwm/virtual.c @@ -733,12 +733,9 @@ int HandlePaging( int mwidth, mheight; int edge_thickness = m->virtual_scr.edge_thickness; - fvwm_debug(__func__, "ET (%s) is: %d", m->si->name, edge_thickness); - mwidth = monitor_get_all_widths(); mheight = monitor_get_all_heights(); - delta->x = 0; delta->y = 0; if (!is_timestamp_valid && do_continue_previous) @@ -1317,7 +1314,6 @@ void initPanFrames(struct monitor *ref) } /* Free panframes here for all monitors. */ - fvwm_debug(__func__, "freeing panframes"); TAILQ_FOREACH(m, &monitor_q, entry) { if (ref != NULL && m != ref) continue; @@ -1362,7 +1358,6 @@ void initPanFrames(struct monitor *ref) checkPanFrames(m); } ref->virtual_scr.edge_thickness = saved_thickness; - fvwm_debug(__func__, "finished setting up per-monitor panframes"); } Bool is_pan_frame(Window w) @@ -3151,4 +3146,4 @@ void CMD_DesktopName(F_CMD_ARGS) TAILQ_FOREACH(m, &monitor_q, entry) apply_desktops_monitor(m); -} \ No newline at end of file +}