[chirp_devel] [PATCH] Prevent memory for last memory being twice
# HG changeset patch # User Kosta A. ve7kcy@gmail.com # Date 1632714516 25200 # Sun Sep 26 20:48:36 2021 -0700 # Node ID d3727332f2854d76d0e863c150ac36a5e776c9af # Parent 5aa2294d78ea241c6573dcf1929475b072e73685 Prevent memory for last memory being twice.
diff --git a/chirp/ui/memedit.py b/chirp/ui/memedit.py --- a/chirp/ui/memedit.py +++ b/chirp/ui/memedit.py @@ -1394,7 +1394,7 @@
# Run low priority jobs to get the rest of the memories hi = int(self.hi_limit_adj.get_value()) - for i in range(hi, max+1): + for i in range(hi+1, max+1): job = common.RadioJob(None, "get_memory", i) job.set_desc(_("Getting memory {number}").format(number=i)) self.rthread.submit(job, 10)
# HG changeset patch # User Kosta A. ve7kcy@gmail.com # Date 1632714516 25200 # Sun Sep 26 20:48:36 2021 -0700 # Node ID d3727332f2854d76d0e863c150ac36a5e776c9af # Parent 5aa2294d78ea241c6573dcf1929475b072e73685 Prevent memory for last memory being twice.
This doesn't mean anything to me, and there's no bug referenced. Can you please reference a bug and explain what you're actually doing here?
Thanks!
--Dan
Sure, sorry about the commit message. It was clearly a bunch of typos.
On Tue, Sep 28, 2021 at 6:00 PM Dan Smith via chirp_devel < chirp_devel@intrepid.danplanet.com> wrote:
# HG changeset patch # User Kosta A. ve7kcy@gmail.com # Date 1632714516 25200 # Sun Sep 26 20:48:36 2021 -0700 # Node ID d3727332f2854d76d0e863c150ac36a5e776c9af # Parent 5aa2294d78ea241c6573dcf1929475b072e73685 Prevent memory for last memory being twice.
This doesn't mean anything to me, and there's no bug referenced. Can you please reference a bug and explain what you're actually doing here?
Thanks!
--Dan _______________________________________________ chirp_devel mailing list chirp_devel@intrepid.danplanet.com http://intrepid.danplanet.com/mailman/listinfo/chirp_devel Developer docs: http://chirp.danplanet.com/projects/chirp/wiki/Developers
participants (3)
-
Dan Smith
-
Kosta A.
-
Kosta Arvanitis