This commit is contained in:
galister
2026-01-09 11:48:44 +09:00
parent 9f79a034e7
commit e6e1764b36
23 changed files with 33 additions and 52 deletions
+4 -8
View File
@@ -156,15 +156,11 @@ pub async fn wlx_device_haptics(
)
}
pub async fn wlx_overlay_show_hide(
state: &mut WayVRClientState,
) {
pub async fn wlx_overlay_show_hide(state: &mut WayVRClientState) {
handle_empty_result(
WayVRClient::fn_wlx_overlay_show_hide(
state.wayvr_client.clone(),
)
.await
.context("failed to trigger overlay show hide"),
WayVRClient::fn_wlx_overlay_show_hide(state.wayvr_client.clone())
.await
.context("failed to trigger overlay show hide"),
)
}