mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-01-30 17:13:50 +01:00
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:
parent
b1a3eee254
commit
679e3833b1
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user