| 122 | |
| 123 | |
| 124 | QString DebugControlsWidget::getToolTip(const QString& name) |
| 125 | { |
| 126 | QString result = name; |
| 127 | auto keyBinding = UIAction::getKeyBinding(name); |
| 128 | if (!keyBinding.isEmpty()) |
| 129 | result += (QString(" (") + keyBinding[0].toString() + ")"); |
| 130 | |
| 131 | return result; |
| 132 | } |
| 133 | |
| 134 | |
| 135 | void DebugControlsWidget::performLaunch() |
nothing calls this directly
no outgoing calls
no test coverage detected