aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Touch
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2019-12-12 22:12:17 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2019-12-12 22:12:17 +0200
commit791ecdccc3d9ecc6311d6b1440e462119e65dc92 (patch)
tree2ed363a38e5a823f83f32042266e45fdbcc3220a /Software/Visual_Studio/Tango.Touch
parent5e705b938989409332ac929e1319b398b5a930a5 (diff)
downloadTango-791ecdccc3d9ecc6311d6b1440e462119e65dc92.tar.gz
Tango-791ecdccc3d9ecc6311d6b1440e462119e65dc92.zip
Improvements on browser module.
Diffstat (limited to 'Software/Visual_Studio/Tango.Touch')
-rw-r--r--Software/Visual_Studio/Tango.Touch/Keyboard/TouchKeyboard.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/Keyboard/TouchKeyboard.cs b/Software/Visual_Studio/Tango.Touch/Keyboard/TouchKeyboard.cs
index a35b91dd6..9a6b7227f 100644
--- a/Software/Visual_Studio/Tango.Touch/Keyboard/TouchKeyboard.cs
+++ b/Software/Visual_Studio/Tango.Touch/Keyboard/TouchKeyboard.cs
@@ -505,10 +505,14 @@ namespace Tango.Touch.Keyboard
{
Forms.SendKeys.SendWait(key);
}
- else
+ else if (key != " ")
{
Forms.SendKeys.SendWait("{" + key + "}");
}
+ else
+ {
+ Forms.SendKeys.SendWait(" ");
+ }
Forms.SendKeys.Flush();
});