Error when adaptive zoom unused #102


  • New
  • Defect
Open
Assigned to ardentvark
  • Gronzig created this issue Jan 10, 2011

    An error occurs at line 813

         if maxDistance < db.minRadius then maxDistance = db.minRadius end

    if adaptivezoom has never been turned on, minradius is nil.
    Should probably be:

        if db.minradius and maxDistance < db.minRadius then maxDistance = db.minRadius end

  • Gronzig added the tags New Defect Jan 10, 2011

To post a comment, please login or register a new account.