1
1
mirror of https://github.com/Eugeny/tabby.git synced 2025-01-03 08:04:02 +03:00
This commit is contained in:
Eugene Pankov 2020-03-01 14:08:54 +01:00
parent 58c7c23bd8
commit 092820173f

View File

@ -374,7 +374,7 @@ export class BaseTerminalTabComponent extends BaseTabComponent implements OnInit
event.stopPropagation()
return
}
if (event.which === 3) {
if (event.which === 3 || event.which === 1 && event.ctrlKey) {
if (this.config.store.terminal.rightClick === 'menu') {
this.hostApp.popupContextMenu(await this.buildContextMenu())
} else if (this.config.store.terminal.rightClick === 'paste') {