Tested 2c420467a980487752ae2b0c9aa89819b027ab70 on Linux Mint 20.2 (Qt 5.12.8).
The Alt-R shortcut is ambiguous with this PR:
$ git grep -n -e '&R' src/qt/forms/optionsdialog.ui
src/qt/forms/optionsdialog.ui:189: <string extracomment="An Options window setting to enable the RPC server.">Enable &RPC server</string>
src/qt/forms/optionsdialog.ui:944: <string>&Reset Options</string>
To solve it, suggesting the following patch:
--- a/src/qt/forms/optionsdialog.ui
+++ b/src/qt/forms/optionsdialog.ui
@@ -33,7 +33,7 @@
<string>Automatically start %1 after logging in to the system.</string>
</property>
<property name="text">
- <string>&Start %1 on system login</string>
+ <string>Start %1 on system &login</string>
</property>
</widget>
</item>
@@ -186,7 +186,7 @@
<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>
</property>
<property name="text">
- <string extracomment="An Options window setting to enable the RPC server.">Enable &RPC server</string>
+ <string extracomment="An Options window setting to enable the RPC server.">Enable RPC &server</string>
</property>
</widget>
</item>