@@ -87,7 +87,7 @@ def __init__(self, root, *args, **kwargs):
87
87
88
88
self .inputs ["device" ] = LabelInput (
89
89
parent = device_frame ,
90
- label = "Device Type " ,
90
+ label = "Device: " ,
91
91
input_class = ttk .Combobox ,
92
92
input_var = tk .StringVar (),
93
93
input_args = {"width" : 20 , "state" : "readonly" },
@@ -97,7 +97,7 @@ def __init__(self, root, *args, **kwargs):
97
97
98
98
self .inputs ["device_ref" ] = LabelInput (
99
99
parent = device_frame ,
100
- label = "Device Reference " ,
100
+ label = "Axis: " ,
101
101
input_class = ttk .Combobox ,
102
102
input_var = tk .StringVar (),
103
103
input_args = {"width" : 20 , "state" : "readonly" },
@@ -108,7 +108,11 @@ def __init__(self, root, *args, **kwargs):
108
108
starting_row_id = 1
109
109
110
110
# 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
+ ]
112
116
for i in range (3 ):
113
117
title = ttk .Label (content_frame , text = title_labels [i ], padding = (2 , 5 , 0 , 0 ))
114
118
title .grid (row = starting_row_id , column = i , sticky = tk .NSEW )
0 commit comments