DroidFish: When clicking move links, also consider the character

immediately to the right of the link as a hit area.
This commit is contained in:
Peter Osterlund 2015-12-31 01:34:57 +01:00
parent b1a3eee254
commit 679e3833b1

View File

@ -3607,6 +3607,11 @@ public class DroidFish extends Activity implements GUIInterface {
if (e == null)
return false;
Node node = e.getValue();
if (node == null && e.getKey() == offs) {
e = offs2Node.lowerEntry(e.getKey());
if (e != null)
node = e.getValue();
}
if (node == null)
return false;