The text in the help file doesn't match the behavior of mouse click on
the waterfall and the behavior isn't consistent.

Help says:
Set Rx Frequency
Double-click to set Rx frequency and decode there
Ctrl-click to set Tx and RX frequencies and decode

What happens depends on the Lock Tx=Rx checkbox.

With the box off we now have:
SIngle-cilck sets Tx/Rx Frequency
Double-click does the same
Ctrl-click sets Rx

With the box on:
SIngle-click sets Tx/Rx Frequency
Double-click does the same
Ctrl-click does the same

And the logic in the usage of freezeDecode1 seems strange
In single click
  int n=1;
  if(ctrl) n+=100;
  emit freezeDecode1(n);
In double click
  int n=2;
  if(ctrl) n+=100;
  emit freezeDecode1(n);
And the function
void MainWindow::freezeDecode(int n)                          //freezeDecode()
{
  if((n%100)==2) on_DecodeButton_clicked (true);
}

Double-click turns off decode and single-click does not.
The += 100 has no effect.
Maybe this is some left-overs from previous functionality?

It would be nice to be able to set TX separately from Rx.
So perhaps double-click sets the TX freq.
Or is is more likely a user would want single-click to set Tx for
split operation and double to set Rx?  How often does one want or need
to set the Rx frequency this way?

I would vote that the lock button have no effect on this.
So it seems that all you need is:
Single-click sets Tx/Rx
Double-click sets Tx
Ctrl-click sets Rx


RRR
Mike W9MDB

------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140
_______________________________________________
wsjt-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wsjt-devel

Reply via email to