Skip to content

Commit

Permalink
Change the default option for layer input in the first panel
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustry committed Sep 17, 2024
1 parent 7eca1d0 commit 79c1bb6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dynamic_layers/dynamic_layers_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ def __init__(self, parent: QDialog = None):
widget: QWidget
widget.setToolTip(help_variables_table)

self.is_table_variable_based = True
self.is_table_variable_based = False
self.radio_variables_from_layer.setChecked(not self.is_table_variable_based)
self.radio_variables_from_table.setChecked(self.is_table_variable_based)
self.radio_variables_from_layer.toggled.connect(self.origin_variable_toggled)
self.origin_variable_toggled()
Expand Down

0 comments on commit 79c1bb6

Please sign in to comment.