Tested 2c420467a980487752ae2b0c9aa89819b027ab70 on Linux Mint 20.2 (Qt 5.12.8).
The Alt-R
shortcut is ambiguous with this PR:
0$ git grep -n -e '&R' src/qt/forms/optionsdialog.ui
1src/qt/forms/optionsdialog.ui:189: <string extracomment="An Options window setting to enable the RPC server.">Enable &RPC server</string>
2src/qt/forms/optionsdialog.ui:944: <string>&Reset Options</string>
To solve it, suggesting the following patch:
0--- a/src/qt/forms/optionsdialog.ui
1+++ b/src/qt/forms/optionsdialog.ui
2@@ -33,7 +33,7 @@
3 <string>Automatically start %1 after logging in to the system.</string>
4 </property>
5 <property name="text">
6- <string>&Start %1 on system login</string>
7+ <string>Start %1 on system &login</string>
8 </property>
9 </widget>
10 </item>
11@@ -186,7 +186,7 @@
12 <string extracomment="Tooltip text for Options window setting that enables the RPC server.">This allows you or a third party tool to communicate with the node through command line and JSON-RPC commands.</string>
13 </property>
14 <property name="text">
15- <string extracomment="An Options window setting to enable the RPC server.">Enable &RPC server</string>
16+ <string extracomment="An Options window setting to enable the RPC server.">Enable RPC &server</string>
17 </property>
18 </widget>
19 </item>