Add keyboard shortcut Ctrl-Shift-C for Copy Raw

This commit is contained in:
Lirusaito
2019-01-16 14:34:27 -05:00
parent a5632c08c7
commit 466b4bf5e4

View File

@@ -2475,6 +2475,17 @@ BOOL LLTextEditor::handleEditKey(const KEY key, const MASK mask)
}
handled = TRUE;
}
else if ((mask & (MASK_CONTROL|MASK_SHIFT)) == (MASK_CONTROL|MASK_SHIFT))
{
if (key == 'C')
{
if (canCopy())
copy(true);
else
reportBadKeystroke();
handled = TRUE;
}
}
else
if( MASK_CONTROL & mask )
{