Now actually works

Only captures events that it needs
This commit is contained in:
opfromthestart 2021-04-17 11:03:23 -04:00
parent 330ed1ab9b
commit a0acd16008

View File

@ -58,12 +58,13 @@ public class Button extends Component {
onClick.accept(inButton);
}
requestReassembly();
return true;
}
else if (e.isLeftMouseButton())
{
setFocused(false);
}
return true;});
return false;});
}