Skip to content

Commit

Permalink
Recursive Checkbox is now enabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tpoveda committed Sep 18, 2020
1 parent 89e4f88 commit 3b62fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artella/plugins/getdependencies/widgets/listdialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def setup_ui(self):
cbx_lyt = QtWidgets.QHBoxLayout()
deps2_lbl = QtWidgets.QLabel('Would you like to download all missing files?')
self._recursive_cbx = QtWidgets.QCheckBox('Recursive?')
self._recursive_cbx.setChecked(False)
self._recursive_cbx.setChecked(True)
cbx_lyt.addWidget(deps2_lbl)
cbx_lyt.addStretch()
cbx_lyt.addWidget(self._recursive_cbx)
Expand Down

0 comments on commit 3b62fb1

Please sign in to comment.