Skip to content

Commit

Permalink
Merge branch 'main' into 211-investigate-whether-importing-the-gui-po…
Browse files Browse the repository at this point in the history
…int-list-is-viable
  • Loading branch information
koebi authored Jan 15, 2024
2 parents 8e82a35 + f895374 commit 9ffc7a9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,14 @@ RELEASING:
13. Create new release in GitHub with tag version and release title of `vX.X.X`
-->

## [1.7.1]
## Unreleased

### Added
- Add hint to use batch jobs for point layers in tooltip in save vertices button ([#211](https://github.com/GIScience/orstools-qgis-plugin/issues/211))

### Fixed
- TypeError if no SVGPaths are set ([#212](https://github.com/GIScience/orstools-qgis-plugin/issues/212))

## [1.7.0] - 2023-12-22

### Added
Expand Down
2 changes: 1 addition & 1 deletion ORStools/gui/ORStoolsDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def run_gui_control(self):

# add ors svg path
my_new_path = os.path.join(basepath, "img/svg")
svg_paths = QSettings().value("svg/searchPathsForSVG")
svg_paths = QSettings().value("svg/searchPathsForSVG") or []
if my_new_path not in svg_paths:
svg_paths.append(my_new_path)
QSettings().setValue("svg/searchPathsForSVG", svg_paths)
Expand Down

0 comments on commit 9ffc7a9

Please sign in to comment.