# HG changeset patch # User Marco Filippi iz3gme.marco@gmail.com # Date 1425894684 -3600 # Mon Mar 09 10:51:24 2015 +0100 # Node ID 2208e480a5f255be20399d2e39d8e5910ea1ffdc # Parent 2501735ee4385f8ccd772d9e2f2c6e39f48b0e5e [THD7] Fix settings support
Even though I cannot test it the bug, introduced with r1594, is pretty obvious
Fix #2401
diff --git a/chirp/drivers/kenwood_live.py b/chirp/drivers/kenwood_live.py --- a/chirp/drivers/kenwood_live.py +++ b/chirp/drivers/kenwood_live.py @@ -406,9 +406,9 @@ ("BCN", aprs, "Beacon"), ("CH", radio, "Channel Mode Display"), # ("DIG", aprs, "APRS Digipeater"), - ("DL", all, "Dual"), - ("LK", all, "Lock"), - ("LMP", all, "Lamp"), + ("DL", top, "Dual"), + ("LK", top, "Lock"), + ("LMP", top, "Lamp"), ("TSP", dtmf, "DTMF Fast Transmission"), ("TXH", dtmf, "TX Hold"), ] @@ -419,7 +419,7 @@ RadioSettingValueBoolean(value)) group.append(rs)
- lists = [("BAL", all, "Balance"), + lists = [("BAL", top, "Balance"), ("BEP", aux, "Beep"), ("BEPT", aprs, "APRS Beep"), ("DS", tnc, "Data Sense"), @@ -427,7 +427,7 @@ ("DTBA", aprs, "APRS Data Band"), ("DTX", aprs, "APRS Data TX"), # ("ICO", aprs, "APRS Icon"), - ("MNF", all, "Memory Display Mode"), + ("MNF", top, "Memory Display Mode"), ("PKSA", aprs, "APRS Packet Speed"), ("POSC", aprs, "APRS Position Comment"), ("PT", dtmf, "DTMF Speed"),