mirror of
https://github.com/FreeTubeApp/FreeTube.git
synced 2025-12-05 01:10:31 +00:00
! Fix Ctrl/Cmd + C unable to copy text when viewing video (#3027)
This commit is contained in:
@@ -1822,6 +1822,11 @@ export default Vue.extend({
|
||||
return
|
||||
}
|
||||
|
||||
// allow copying text
|
||||
if ((event.ctrlKey || event.metaKey) && event.key.lowercase() === 'c') {
|
||||
return
|
||||
}
|
||||
|
||||
if (this.player !== null) {
|
||||
switch (event.key) {
|
||||
case ' ':
|
||||
|
||||
Reference in New Issue
Block a user