[chirp_devel] [PATCH] [ui] Default memory editor view to 0-999 (was 0-25). Fixes #3629

Tom Hayward
Wed Jun 1 17:30:21 PDT 2016


# HG changeset patch
# User Tom Hayward <tom at tomh.us>
# Date 1464827404 25200
#      Wed Jun 01 17:30:04 2016 -0700
# Node ID d79f9e180c20ed54221d02d389f65466c901ee4a
# Parent  a954c5ca5c74f76d86d25f277a3225308d216c2a
[ui] Default memory editor view to 0-999 (was 0-25). Fixes #3629

diff -r a954c5ca5c74 -r d79f9e180c20 chirp/ui/memedit.py
--- a/chirp/ui/memedit.py	Tue May 31 12:41:14 2016 -0700
+++ b/chirp/ui/memedit.py	Wed Jun 01 17:30:04 2016 -0700
@@ -1181,7 +1181,7 @@
         lostart = self._config.is_defined(lokey) and \
             self._config.get_int(lokey) or min
         histart = self._config.is_defined(hikey) and \
-            self._config.get_int(hikey) or 25
+            self._config.get_int(hikey) or 999
 
         self.lo_limit_adj = gtk.Adjustment(lostart, min, max-1, 1, 10)
         lo = gtk.SpinButton(self.lo_limit_adj)



More information about the chirp_devel mailing list