Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion profile_manager/handlers/customization.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def import_customizations(source_profile_path: Path, target_profile_path: Path):
E.g.
[Customization]
Browser=true
Browser\AFS=false
Browser\\AFS=false
...

Args:
Expand Down
4 changes: 2 additions & 2 deletions profile_manager/handlers/expressions.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ def import_expressions(source_qgis_ini_file: Path, target_qgis_ini_file: Path):
...
[expressions]
...
user\test_expression\expression=1 + 1
user\test_expression\helpText="..."
user\\test_expression\\expression=1 + 1
user\\test_expression\\helpText="..."
...

Note: This does not handle Python expression functions yet. TODO
Expand Down