Fix focus/clipboard related to mouse/keyboard refactor.

This commit is contained in:
Joel Martin
2011-04-03 17:51:47 -05:00
parent d3796c149e
commit d1bd5ec7d4
3 changed files with 13 additions and 7 deletions

View File

@@ -37,7 +37,6 @@ cdef('cursor_uri', 'raw', null, 'Can we render cursor using data URI');
cdef('target', 'dom', null, 'Canvas element for VNC viewport');
cdef('focusContainer', 'dom', document, 'DOM element that traps keyboard input');
cdef('true_color', 'bool', true, 'Request true color pixel data');
cdef('focused', 'bool', true, 'Capture and send key strokes');
cdef('colourMap', 'raw', [], 'Colour map array (not true color)');
cdef('scale', 'float', 1, 'VNC viewport scale factor');
@@ -204,8 +203,6 @@ function constructor() {
conf.cursor_uri = false;
}
conf.focused = true;
Util.Debug("<< Canvas.init");
return that ;
}