From 05de9c603411aa01551b221355eb55987dcf032f Mon Sep 17 00:00:00 2001 From: Nick Foster Date: Wed, 10 Oct 2012 08:20:47 -0700 Subject: [PATCH] Use more realistic value for max az map range. Should make this configurable. --- python/az_map.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/az_map.py b/python/az_map.py index 4f84fd5..a21ed1a 100755 --- a/python/az_map.py +++ b/python/az_map.py @@ -77,8 +77,8 @@ class az_map_model(QtCore.QObject): # the azimuth map widget class az_map(QtGui.QWidget): - maxrange = 45 - ringsize = 10 + maxrange = 450 + ringsize = 100 bgcolor = QtCore.Qt.black ringpen = QtGui.QPen(QtGui.QColor(0, 96, 127, 255), 1.3) rangepen = QtGui.QPen(QtGui.QColor(255, 255, 0, 255), 1.0)