зеркало из https://github.com/docker/kitematic.git
Fix keyboard accelerators on Linux (#2316)
Signed-off-by: Massimiliano Giroldi <max.devjs@gmail.com>
This commit is contained in:
Родитель
c0b4bd2d23
Коммит
1e1faff6d9
|
@ -105,7 +105,7 @@ module.exports = {
|
|||
return 'Documents';
|
||||
},
|
||||
CommandOrCtrl: function () {
|
||||
return this.isWindows() ? 'Ctrl' : 'Command';
|
||||
return (this.isWindows() || this.isLinux()) ? 'Ctrl' : 'Command';
|
||||
},
|
||||
removeSensitiveData: function (str) {
|
||||
if (!str || str.length === 0 || typeof str !== 'string' ) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче