mirror of
git://git.proxmox.com/git/novnc-pve.git
synced 2025-01-03 05:17:56 +03:00
add fix for sendCtrlAltDeleteButton
with this patch the sendCtrlAltDeleteButton shows and hides properly on mobile Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
5b53f03537
commit
782c2d8a25
18
debian/patches/fix-CtrlAltDel-button-mobile.patch
vendored
Normal file
18
debian/patches/fix-CtrlAltDel-button-mobile.patch
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
--- a/pveui.js
|
||||
+++ b/pveui.js
|
||||
@@ -1156,6 +1156,7 @@
|
||||
$D('toggleAltButton').style.display = "inline";
|
||||
$D('sendTabButton').style.display = "inline";
|
||||
$D('sendEscButton').style.display = "inline";
|
||||
+ $D('sendCtrlAltDelButton').style.display = "inline";
|
||||
$D('showExtraKeysButton').className = "noVNC_status_button_selected";
|
||||
UI.extraKeysVisible = true;
|
||||
} else if(UI.extraKeysVisible === true) {
|
||||
@@ -1163,6 +1164,7 @@
|
||||
$D('toggleAltButton').style.display = "";
|
||||
$D('sendTabButton').style.display = "";
|
||||
$D('sendEscButton').style.display = "";
|
||||
+ $D('sendCtrlAltDelButton').style.display = "";
|
||||
$D('showExtraKeysButton').className = "noVNC_status_button";
|
||||
UI.extraKeysVisible = false;
|
||||
}
|
1
debian/patches/series
vendored
1
debian/patches/series
vendored
@ -1,3 +1,4 @@
|
||||
pveui.patch
|
||||
fix-base-css.patch
|
||||
fix-ie11-resize.patch
|
||||
fix-CtrlAltDel-button-mobile.patch
|
||||
|
Loading…
Reference in New Issue
Block a user