Skip to content

Commit 9048c66

Browse files
Merge pull request #1028 from TheDeanLab/1027-update-focus-after-autofocus-routine
Update autofocus_setting_popup.py
2 parents 365fbad + 24f82e1 commit 9048c66

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/navigate/view/popups/autofocus_setting_popup.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def __init__(self, root, *args, **kwargs):
8787

8888
self.inputs["device"] = LabelInput(
8989
parent=device_frame,
90-
label="Device Type",
90+
label="Device:",
9191
input_class=ttk.Combobox,
9292
input_var=tk.StringVar(),
9393
input_args={"width": 20, "state": "readonly"},
@@ -97,7 +97,7 @@ def __init__(self, root, *args, **kwargs):
9797

9898
self.inputs["device_ref"] = LabelInput(
9999
parent=device_frame,
100-
label="Device Reference",
100+
label="Axis:",
101101
input_class=ttk.Combobox,
102102
input_var=tk.StringVar(),
103103
input_args={"width": 20, "state": "readonly"},
@@ -108,7 +108,11 @@ def __init__(self, root, *args, **kwargs):
108108
starting_row_id = 1
109109

110110
# Row 0, Column Titles
111-
title_labels = ["Select", "Range", "Step Size"]
111+
title_labels = [
112+
"Select",
113+
"Range (" + "\N{GREEK SMALL LETTER MU}" + "m)",
114+
"Step Size (" + "\N{GREEK SMALL LETTER MU}" + "m)"
115+
]
112116
for i in range(3):
113117
title = ttk.Label(content_frame, text=title_labels[i], padding=(2, 5, 0, 0))
114118
title.grid(row=starting_row_id, column=i, sticky=tk.NSEW)

0 commit comments

Comments
 (0)