mirror of https://github.com/wayvr-org/wayvr.git
fix thresholds being backwards
This commit is contained in:
parent
c77e465343
commit
a0c33bc744
|
|
@ -139,9 +139,9 @@ impl CustomClickAction {
|
||||||
|
|
||||||
pub fn state(&mut self, before: bool, state: &XrState) -> anyhow::Result<bool> {
|
pub fn state(&mut self, before: bool, state: &XrState) -> anyhow::Result<bool> {
|
||||||
let threshold = if before {
|
let threshold = if before {
|
||||||
self.threshold[1]
|
|
||||||
} else {
|
|
||||||
self.threshold[0]
|
self.threshold[0]
|
||||||
|
} else {
|
||||||
|
self.threshold[1]
|
||||||
};
|
};
|
||||||
|
|
||||||
Ok(self.single.check(&state.session, threshold)?
|
Ok(self.single.check(&state.session, threshold)?
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue