Skip to content
Snippets Groups Projects
Commit d5b061f1 authored by Arnaud HEMMERLE's avatar Arnaud HEMMERLE
Browse files

Set is_print_abs to True by default

parent 67cac040
No related merge requests found
# Release notes
## v3.2.4
- GIXD: Fix bug when a 2D detector is present but images are empty.
- Set is_print_abs to True by default.
## v3.2.3
- Add the possibility to print the mean values of selected sensors in GIXS, GIXD, area_detector, XRF.
......
......@@ -152,7 +152,7 @@ def display_widgets_area_detector(expt):
# Print absorbers
dw['is_print_abs'] = iwid.Checkbox(
value=expt.get_default_param_value('is_print_abs', alt=False),
value=expt.get_default_param_value('is_print_abs', alt=True),
style=style,
layout=iwid.Layout(width='150px'),
description='Print absorbers')
......
......@@ -201,7 +201,7 @@ def display_widgets_gixd(expt):
# Print absorbers
dw['is_print_abs'] = iwid.Checkbox(
value=expt.get_default_param_value('is_print_abs', alt=False),
value=expt.get_default_param_value('is_print_abs', alt=True),
style=style,
layout=iwid.Layout(width='150px'),
description='Print absorbers')
......
......@@ -198,7 +198,7 @@ def display_widgets_gixs(expt):
# Print absorbers
dw['is_print_abs'] = iwid.Checkbox(
value=expt.get_default_param_value('is_print_abs', alt=False),
value=expt.get_default_param_value('is_print_abs', alt=True),
style=style,
layout=iwid.Layout(width='150px'),
description='Print absorbers')
......
......@@ -198,7 +198,7 @@ def display_widgets_xrf(expt):
# Print absorbers
dw['is_print_abs'] = iwid.Checkbox(
value=expt.get_default_param_value('is_print_abs', alt=False),
value=expt.get_default_param_value('is_print_abs', alt=True),
style=style,
layout=iwid.Layout(width='150px'),
description='Print absorbers')
......
......@@ -22,7 +22,7 @@ except ModuleNotFoundError:
# Rules for numbering versions
# vX.Y.Z with X major, Y minor, Z patch. Each new version increments Z (not used if Z=0).
# If the file Example.ipynb cannot run with the new libraries, increment Y and restart at Z=0.
__version__ = 'v3.2.3'
__version__ = 'v3.2.4'
# Define the object experiment
# It contains all the attributes relevant to the current experiment
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment