Fixed remote desktop not sending keys.

This commit is contained in:
Ylian Saint-Hilaire 2020-12-01 23:16:17 -08:00
parent ceac7cd4dc
commit 74caeb99bf
4 changed files with 455 additions and 447 deletions

View File

@ -7,7 +7,7 @@
</td>
</tr>
</tbody></table>
<p>Un compte a été créé pour vous sur le serveur <a href="[[[SERVERURL]]][[[URLARGS1]]]" notrans="1">[[[SERVERNAME]]]</a>, vous pouvez y accéder maintenant avec:</p>
<p>Un compte a été créé pour vous sur le serveur <a href="[[[SERVERURL]]][[[URLARGS1]]]" notrans="1">[[[SERVERNAME]]]</a>, vous pouvez y accéder maintenant avec :</p>
<p>
&nbsp;&nbsp;&nbsp;Nom d'utilisateur: <b notrans="1">[[[ACCOUNTNAME]]]</b><br>
&nbsp;&nbsp;&nbsp;Mot de passe: <b notrans="1">[[[PASSWORD]]]</b>

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -7297,6 +7297,7 @@
// Remote desktop special key combos for Windows
function deskSendKeys() {
Q('DeskWD').blur();
if (xxdialogMode || desktop == null || desktop.State != 3) return;
var ks = Q('deskkeys').value;
if (ks == 0) { // WIN+Down arrow
@ -7468,6 +7469,7 @@
// Show process dialogs
function toggleDeskTools() {
Q('DeskToolsButton').blur();
if (xxdialogMode) return;
if (QS('DeskTools').display == 'none') {
QV('DeskTools', true);
@ -7595,7 +7597,7 @@
}
// Toggle mouse and keyboard input
function toggleKvmControl() { putstore('DeskControl', (Q('DeskControl').checked?1:0)); QS('DeskControlSpan').color = Q('DeskControl').checked?null:'red'; }
function toggleKvmControl() { Q('DeskControl').blur(); putstore('DeskControl', (Q('DeskControl').checked?1:0)); QS('DeskControlSpan').color = Q('DeskControl').checked?null:'red'; }
// Toggle desktop session recording
function deskRecordSession() {