Skip to content

Commit

Permalink
do not show maptip by default (avoid crash)
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed May 12, 2021
1 parent f4cf068 commit 4ac8799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion swiss_locator/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def __init__(self):
# if left empty or NULL, try to use locale and defaults to en
self.add_setting(String("lang", Scope.Global, ''))
self.add_setting(String("crs", Scope.Global, 'project', allowed_values=('2056', '21781', 'project')))
self.add_setting(Bool("show_map_tip", Scope.Global, True))
self.add_setting(Bool("show_map_tip", Scope.Global, False))

self.add_setting(Enum('locations_priority', Scope.Global, QgsLocatorFilter.Highest))
self.add_setting(Integer('locations_limit', Scope.Global, 8))
Expand Down

0 comments on commit 4ac8799

Please sign in to comment.