Kaydet (Commit) 8186fd95 authored tarafından Liu Zhe's avatar Liu Zhe

Speed up keyboard typing.

üst 9a90f65f
......@@ -40,7 +40,7 @@ public class Tester {
static {
try {
robot = new Robot();
robot.setAutoDelay(20);
robot.setAutoDelay(5);
robot.setAutoWaitForIdle(true);
} catch (AWTException e) {
e.printStackTrace();
......
......@@ -288,6 +288,11 @@ public class VclControl extends VclWidget {
inputKeys("");
}
public void typeKeys(String keys) {
focus();
Tester.typeKeys(keys);
}
public Rectangle getScreenRectangle() {
String ret = (String) invoke(Constant.M_GetScreenRectangle, new Object[] { Boolean.FALSE });
if (ret == null)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment