Skip to content

Commit

Permalink
set variables back to selection_extend = True, as current solution
Browse files Browse the repository at this point in the history
  • Loading branch information
sjib committed Dec 19, 2024
1 parent cdba854 commit 3638cde
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions qgepqwat2ili/gui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -656,10 +656,10 @@ def action_do_export():

# add logger info to check what selection is used
# 18.12.2024
# logger.info(f"Start Exporting with selection {str(export_dialog.selected_ids)}")
logger.info(
f"Start Exporting with selection {str(export_dialog.selected_ids)} - without automatic extension of neigbouring wwn elements"
)
logger.info(f"Start Exporting with selection {str(export_dialog.selected_ids)}")
# logger.info(
# f"Start Exporting with selection {str(export_dialog.selected_ids)} - without automatic extension of neigbouring wwn elements"
# )

if emodel == "VSA_KEK_2019_LV95":
logger.info("Start Exporting VSA_KEK_2019_LV95")
Expand Down
3 changes: 2 additions & 1 deletion qgepqwat2ili/gui/gui_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ def logs_next_to_file(self):

@property
def selected_ids(self):
selection_extend = False
# Variable to choose if automatic selection_extend or not
selection_extend = True

if self.limit_checkbox.isChecked():
ids = []
Expand Down

0 comments on commit 3638cde

Please sign in to comment.