| 238 | } |
| 239 | |
| 240 | std::string MouseBindings::getCommandFromMousebind( const MouseBindings::Shortcut& keys ) { |
| 241 | auto it = mShortcuts.find( sanitizeShortcut( keys ) ); |
| 242 | if ( it != mShortcuts.end() ) { |
| 243 | return it->second; |
| 244 | } |
| 245 | return ""; |
| 246 | } |
| 247 | |
| 248 | std::string MouseBindings::mousebindFormat( std::string str ) { |
| 249 | if ( !str.empty() ) { |
no test coverage detected