Utility title renames

For #34
This commit is contained in:
usov_i 2021-07-05 15:01:11 +02:00
parent d6b27fb33a
commit d6e599d4f9
3 changed files with 4 additions and 4 deletions

View File

@ -516,7 +516,7 @@ def create():
lorentz_checkbox = CheckboxGroup(labels=["Lorentz Correction"], width=145, margin=(13, 5, 5, 5))
export_preview_textinput = TextAreaInput(title="Export file preview:", width=500, height=400)
export_preview_textinput = TextAreaInput(title="Export file(s) preview:", width=500, height=400)
def _update_preview():
with tempfile.TemporaryDirectory() as temp_dir:

View File

@ -485,7 +485,7 @@ def create():
update_image()
main_auto_checkbox = CheckboxGroup(
labels=["Main Auto 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_click(main_auto_checkbox_callback)
@ -531,7 +531,7 @@ def create():
update_overview_plot()
proj_auto_checkbox = CheckboxGroup(
labels=["Projections Auto 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_click(proj_auto_checkbox_callback)

View File

@ -684,7 +684,7 @@ def create():
lorentz_checkbox = CheckboxGroup(labels=["Lorentz Correction"], width=145, margin=(13, 5, 5, 5))
export_preview_textinput = TextAreaInput(title="Export file preview:", width=450, height=400)
export_preview_textinput = TextAreaInput(title="Export file(s) preview:", width=450, height=400)
def _update_preview():
with tempfile.TemporaryDirectory() as temp_dir: