Skip to content

Commit

Permalink
Update default value of Setting dialog (#361)
Browse files Browse the repository at this point in the history
  • Loading branch information
paskino authored Oct 9, 2024
1 parent b15f925 commit db6a1b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/idvc/ui/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ def __init__(self, parent, title="Settings"):
self.addWidget(self.dark_checkbox, '', 'darkmode')

self.copy_files_checkbox = QCheckBox("Allow a copy of the image files to be stored. ")
self.copy_files_checkbox.setChecked(False)
self.addWidget(self.copy_files_checkbox, '', 'copy_file_checkbox')
self.vis_size_label = QLabel("Maximum downsampled image size (GB): ")
self.vis_size_entry = QDoubleSpinBox()
Expand Down Expand Up @@ -150,4 +151,4 @@ def onCancel(self):
if self.parent.settings.value("first_app_load") != "False":
self.parent.CreateSessionSelector("new window")
self.parent.settings.setValue("first_app_load", "False")
self.close()
self.close()

0 comments on commit db6a1b7

Please sign in to comment.