You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- adds slider(5,<bool>) Artisan Command to toggle visibility of the SV Slider
- extended MPL default font mappings for the languages AR, HE, KR, zh_CN, zh_TW on Linux
mpl.rcParams['font.family'] = ['NanumGothic', 'DejaVu Sans', 'DejaVu Sans Mono', 'sans-serif']
7706
+
mpl.rcParams['font.family'] = ['Noto Sans CJK JP', 'Noto Sans JP', 'TakaoPGothic', 'DejaVu Sans', 'sans-serif']
7707
+
elif self.locale_str in {'kr'}:
7708
+
mpl.rcParams['font.family'] = ['Noto Sans KR', 'Noto Sans CJK KR', 'Noto Sans CJK JP', 'NanumGothic', 'DejaVu Sans', 'DejaVu Sans Mono', 'sans-serif']
7709
+
elif self.locale_str in {'zh_CN'}:
7710
+
mpl.rcParams['font.family'] = ['Noto Sans SC', 'Noto Sans CJK SC', 'Noto Sans CJK JP', 'Source Han Sans CN', 'NanumGothic', 'DejaVu Sans', 'DejaVu Sans Mono', 'sans-serif']
7711
+
elif self.locale_str in {'zh_TW'}:
7712
+
mpl.rcParams['font.family'] = ['Noto Sans TC', 'Noto Sans CJK TC', 'Noto Sans CJK JP', 'Source Han Sans CN', 'NanumGothic', 'DejaVu Sans', 'DejaVu Sans Mono', 'sans-serif']
7707
7713
self.mpl_fontproperties = FontProperties()
7708
7714
else: # Windows:
7709
7715
mpl.rcParams['font.family'] = ['Microsoft Sans Serif', 'DejaVu Sans', 'Arial', 'sans-serif'] # works for Greek and Arabic
Copy file name to clipboardExpand all lines: src/help/eventbuttons_help.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -218,7 +218,7 @@ def content() -> str:
218
218
tbl_Commands.add_row([' ','playbackdropmode(<int>)',QApplication.translate('HelpDlg','sets playback DROP mode to 0: off, 1: time, 2: BT, 3: ET')])
219
219
tbl_Commands.add_row([' ','playback(n,<bool>)',QApplication.translate('HelpDlg','toggles playback per event type n from {1,2,3,4}')])
220
220
tbl_Commands.add_row([' ','ramp(n,<bool>)',QApplication.translate('HelpDlg','toggles playback ramping per event type n from {1,2,3,4}')])
221
-
tbl_Commands.add_row([' ','slider(n,<bool>)',QApplication.translate('HelpDlg','show/hide slider per event type n from {1,2,3,4}')])
221
+
tbl_Commands.add_row([' ','slider(n,<bool>)',QApplication.translate('HelpDlg','show/hide slider per event type n from {1,2,3,4}; n=5 toggles the PID SV slider visibility')])
222
222
tbl_Commands.add_row([' ','quantifier(n,<bool>)',QApplication.translate('HelpDlg','activate/deactivate quantification per event type n from {1,2,3,4}')])
223
223
tbl_Commands.add_row([' ','setBatchSize(<float>)',QApplication.translate('HelpDlg','set the batch size to the given value. If the value is negative, the batch size is taken from the background profile, if any is loaded')])
224
224
tbl_Commands.add_row([' ','openProperties',QApplication.translate('HelpDlg','opens the Roast Properties dialog')])
Copy file name to clipboardExpand all lines: src/help/eventsliders_help.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -142,7 +142,7 @@ def content() -> str:
142
142
tbl_Commands.add_row([' ','playbackdropmode(<int>)',QApplication.translate('HelpDlg','sets playback DROP mode to 0: off, 1: time, 2: BT, 3: ET'),' '])
143
143
tbl_Commands.add_row([' ','playback(n,<bool>)',QApplication.translate('HelpDlg','toggles playback per event type n from {1,2,3,4}'),' '])
144
144
tbl_Commands.add_row([' ','ramp(n,<bool>)',QApplication.translate('HelpDlg','toggles playback ramping per event type n from {1,2,3,4}'),' '])
145
-
tbl_Commands.add_row([' ','slider(n,<bool>)',QApplication.translate('HelpDlg','show/hide slider per event type n from {1,2,3,4}'),' '])
145
+
tbl_Commands.add_row([' ','slider(n,<bool>)',QApplication.translate('HelpDlg','show/hide slider per event type n from {1,2,3,4}; n=5 toggles the PID SV slider visibility'),' '])
146
146
tbl_Commands.add_row([' ','quantifier(n,<bool>)',QApplication.translate('HelpDlg','activate/deactivate quantification per event type n from {1,2,3,4}'),' '])
147
147
tbl_Commands.add_row([' ','setBatchSize(<float>)',QApplication.translate('HelpDlg','set the batch size to the given value. If the value is negative, the batch size is taken from the background profile, if any is loaded'),' '])
148
148
tbl_Commands.add_row([' ','openProperties',QApplication.translate('HelpDlg','opens the Roast Properties dialog'),' '])
0 commit comments