Utility style fix

This commit is contained in:
2024-09-05 17:26:47 +02:00
parent e9ae52bb60
commit dc1f2a92cc
2 changed files with 3 additions and 3 deletions

View File

@ -364,7 +364,7 @@ def create():
_update_proj_plots() _update_proj_plots()
proj_auto_checkbox = CheckboxGroup( proj_auto_checkbox = CheckboxGroup(
labels=["Projections Intensity Range"], active=[0], width=145, margin=[10, 5, 0, 5] labels=["Projections Intensity Range:"], active=[0], width=145, margin=[10, 5, 0, 5]
) )
proj_auto_checkbox.on_change("active", proj_auto_checkbox_callback) proj_auto_checkbox.on_change("active", proj_auto_checkbox_callback)

View File

@ -689,7 +689,7 @@ def create():
_update_image() _update_image()
main_auto_checkbox = CheckboxGroup( main_auto_checkbox = CheckboxGroup(
labels=["Frame Intensity Range"], active=[0], width=145, margin=[10, 5, 0, 5] labels=["Frame Intensity Range:"], active=[0], width=145, margin=[10, 5, 0, 5]
) )
main_auto_checkbox.on_change("active", main_auto_checkbox_callback) main_auto_checkbox.on_change("active", main_auto_checkbox_callback)
@ -721,7 +721,7 @@ def create():
_update_proj_plots() _update_proj_plots()
proj_auto_checkbox = CheckboxGroup( proj_auto_checkbox = CheckboxGroup(
labels=["Projections Intensity Range"], active=[0], width=145, margin=[10, 5, 0, 5] labels=["Projections Intensity Range:"], active=[0], width=145, margin=[10, 5, 0, 5]
) )
proj_auto_checkbox.on_change("active", proj_auto_checkbox_callback) proj_auto_checkbox.on_change("active", proj_auto_checkbox_callback)