Skip to content

Commit 9f65a99

Browse files
committed
Merge branch '2.9'
2 parents 9d17bf3 + 2283f17 commit 9f65a99

4 files changed

Lines changed: 336 additions & 255 deletions

File tree

docs/src/plasma/qtplasmac.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,7 @@ The <<plasma:conversational-tab,CONVERSATIONAL Tab>> enables the user to quickly
10261026

10271027
See <<plasma:shape-library,Conversational Shape Library>> for detailed information on the Conversational feature.
10281028

1029-
It is possible to disable this tab so the conversational feature cannot be used by an operator. This may be achieved either by wiring the pin to a physical key-switch or similar or it may also be set in a HAL file using the following command:
1029+
It is possible to hide this tab so the conversational feature cannot be used by an operator. This may be achieved either by wiring the pin to a physical key-switch or similar or it may also be set in a HAL file using the following command:
10301030

10311031
[source,{hal}]
10321032
----
@@ -1044,7 +1044,7 @@ Some functions/features are only used for particular modes and are not displayed
10441044

10451045
This tab is used to display configuration parameters that are modified infrequently.
10461046

1047-
It is possible to disable this tab so machine settings cannot be modified by unauthorized personnel. This may be achieved either by wiring the pin to a physical key-switch or similar or it may also be set in a HAL file using the following command:
1047+
It is possible to hide this tab so machine settings cannot be modified by unauthorized personnel. This may be achieved either by wiring the pin to a physical key-switch or similar or it may also be set in a HAL file using the following command:
10481048

10491049
[source,{hal}]
10501050
----
@@ -1222,7 +1222,7 @@ image::images/qtplasmac_settings.png[width=800,align="center"]
12221222

12231223
This tab is used to display GUI configuration parameters, button text, and shutdown text that are modified infrequently as well as some utility buttons.
12241224

1225-
It is possible to disable this tab so machine settings cannot be modified by unauthorized personnel. This may be achieved either by wiring the pin to a physical key-switch or similar or it may also be set in a HAL file using the following command:
1225+
It is possible to hide this tab so machine settings cannot be modified by unauthorized personnel. This may be achieved either by wiring the pin to a physical key-switch or similar or it may also be set in a HAL file using the following command:
12261226

12271227
[source,{hal}]
12281228
----
@@ -3138,17 +3138,17 @@ Preview = #000000
31383138
=== Custom Python Code
31393139

31403140
It is possible to add custom Python code to change some existing functions or to add new ones.
3141-
Custom code can be added in two different way, a user command file or a user periodic file.
3141+
Custom code can be added in two different ways: a user command file or a user periodic file.
31423142

3143-
A user command file is specified in the DISPLAY section of the _<machine_name>_.ini file and contains Python code that is processed during startup.
3143+
A user command file is specified in the DISPLAY section of the _<machine_name>_.ini file and contains Python code that is processed only once during startup.
31443144

31453145
[source,{ini}]
31463146
----
3147-
n USER_COMMAND_FILE = my_custom_code.py
3147+
USER_COMMAND_FILE = my_custom_code.py
31483148
----
31493149

3150-
A user periodic file must be named user_periodic.py and must be loated in the machines config directory.
3151-
This file is processed every cycle (usually 100ms) and is used for functions that require regular updating.
3150+
A user periodic file must be named user_periodic.py and must be loaded in the machines config directory.
3151+
This file is processed every cycle (usually 100 ms) and is used for functions that require regular updating.
31523152

31533153
== QtPlasmaC Advanced Topics
31543154

lib/python/qtvcp/lib/qtplasmac/tooltips.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def set_tool_tips(W):
204204
W.file_edit.setToolTip(_translate('ToolTips', 'Toggles the use of the G-Code file editor'))
205205
W.mdi_show.setToolTip(_translate('ToolTips', 'Toggles the use of Manual Data Input mode'))
206206
text0 = _translate('ToolTips', 'User button')
207-
text1 = _translate('ToolTips', 'configured in the INI file')
207+
text1 = _translate('ToolTips', 'configured in the SETTINGS tab')
208208
for b in range(1,21):
209209
W['button_{}'.format(b)].setToolTip(_translate('ToolTips', '{} #{} {}'.format(text0, b, text1)))
210210

0 commit comments

Comments
 (0)