Skip to content
Merged
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
5 changes: 3 additions & 2 deletions active_plugins/callbarcodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def set_directory_fn(path):
)

self.wants_call_image = cellprofiler_core.setting.Binary(
"Retain an image of the barcodes color coded by call?",
"Retain an image of the barcodes color coded by match?",
False,
doc="""\
Select "*{YES}*" to retain the image of the objects color-coded
Expand Down Expand Up @@ -387,7 +387,7 @@ def visible_settings(self):
if base_meas.removable:
result += [base_meas.remover]
result += add_buttons[base]

result += [self.do_library_match]
if self.do_library_match:
result += [
self.csv_directory,
Expand Down Expand Up @@ -911,4 +911,5 @@ def upgrade_settings(self, setting_values, variable_revision_number, module_name
variable_revision_number = 2
if variable_revision_number == 2:
setting_values = setting_values[:14]+["Yes"]+setting_values[14:]
variable_revision_number = 3
return setting_values, variable_revision_number