Skip to content

Commit

Permalink
Remove curved display constraints in sideview mode
Browse files Browse the repository at this point in the history
  • Loading branch information
wheaney committed Sep 17, 2024
1 parent b42f46a commit eb33045
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion defaults/PyXRLinuxDriverIPC
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@
"custom_remote_binary": [
{
"name": "breezy_vulkan_setup",
"url": "https://github.com/wheaney/breezy-desktop/releases/download/v1.0.3-decky/breezy_vulkan_setup",
"url": "https://github.com/wheaney/breezy-desktop/releases/download/v1.0.4-decky/breezy_vulkan_setup",
"sha256hash": "6f5a5b3b6f920e88b295f07717a7e1a8a53f1d0090f8cb56aff56f8c4e701b5b"
},
{
"name": "breezyVulkan-x86_64.tar.gz",
"url": "https://github.com/wheaney/breezy-desktop/releases/download/v1.0.3-decky/breezyVulkan-x86_64.tar.gz",
"sha256hash": "8bb8d3e8c85f525a04864ba0ba63d3fa31af43caf3939fac7abd53e7d1ad5c4b"
"url": "https://github.com/wheaney/breezy-desktop/releases/download/v1.0.4-decky/breezyVulkan-x86_64.tar.gz",
"sha256hash": "84ac2bf2b1900e0af8745c9746f758585136ccea12a09fd09a921a7b9f131291"
}
]
}
4 changes: 2 additions & 2 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ const Content: VFC = () => {
const advancedSettings = [
isVrLiteMode && !isJoystickMode && joystickModeButton,
isShaderMode && !driverState?.sbs_mode_enabled && enableSbsButton,
isVirtualDisplayMode && !driverState?.sbs_mode_enabled && !config?.curved_display && curvedDisplayButton,
isShaderMode && !driverState?.sbs_mode_enabled && !config?.curved_display && curvedDisplayButton,
config && isVirtualDisplayMode && <PanelSectionRow>
<SliderField value={config.look_ahead}
min={0} max={45} notchTicksVisible={true}
Expand Down Expand Up @@ -788,7 +788,7 @@ const Content: VFC = () => {
}
</ButtonItem>
</PanelSectionRow>}
{isVirtualDisplayMode && (driverState?.sbs_mode_enabled || config?.curved_display) && curvedDisplayButton}
{isShaderMode && (driverState?.sbs_mode_enabled || config?.curved_display) && curvedDisplayButton}
{
// Always show this button if SBS is enabled, so that the user can disable it through the UI.
// Once disabled, it will disappear entirely if not in virtual display mode.
Expand Down

0 comments on commit eb33045

Please sign in to comment.