From ebd23df81cbe06b035dae445bde79784d3eedfa3 Mon Sep 17 00:00:00 2001 From: c vw Date: Mon, 8 Mar 2021 09:32:06 +0100 Subject: [PATCH] Polished the "reject zero moves" fix. --- receiver.c | 42 +++++++++++++++++++++++++++--------------- 1 file changed, 27 insertions(+), 15 deletions(-) diff --git a/receiver.c b/receiver.c index ef880a8..6774dfc 100644 --- a/receiver.c +++ b/receiver.c @@ -142,25 +142,37 @@ gboolean receiver_motion_notify_event(GtkWidget *widget, GdkEventMotion *event, int x, y; GdkModifierType state; RECEIVER *rx=(RECEIVER *)data; - // DL1YCF: if !pressed, we may come from the destruction - // of a menu, and should not move the VFO. - if(!making_active && pressed) { + // + // if !pressed, we may come from the destruction + // of a menu, and should not move the VFO. + // + if (!making_active && pressed) { gdk_window_get_device_position (event->window, - event->device, - &x, - &y, - &state); + event->device, + &x, + &y, + &state); + // + // Sometimes it turned out to be difficult sometimes to "jump" to a + // new frequency by just clicking in the panadaper. Futher analysis + // showed that there were "moves" with zero offset arriving between + // pressing and releasing the mouse button. + // (In fact, on my Macintosh I see zillions of moves with zero offset) + // Accepting such a "move" between a "press" and the next "release" event + // sets "has_moved" and results in a "VFO drag" instead of a "VFO set". // - // It turns out to be difficult sometimes to "jump" to a - // frequency by just clicking in the panadaper, since the - // operating system may report a very small move between - // pressing and releasing. Then x and last_x is the same. + // So we do the following: + // - "moves" with zero offset are always ignored + // - the first "move" to be accepted after a "press" must lead us + // at least 2 pixels away from the original position. // int moved=x-last_x; - if (moved != 0) { - vfo_move((long long)((float)moved*rx->hz_per_pixel),FALSE); - last_x=x; - has_moved=TRUE; + if (moved) { + if (has_moved || move < -1 || move > 1) { + vfo_move((long long)((float)moved*rx->hz_per_pixel),FALSE); + last_x=x; + has_moved=TRUE; + } } } -- 2.45.2