This commit is contained in:
legop3
2026-01-28 14:09:09 -05:00
parent ae81f8914f
commit d2722e40cc
5 changed files with 32 additions and 4 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ export default function ControlSummary() {
</div>
<div className="grid h-full grid-rows-[1fr_1fr_auto] gap-0.5">
<div className="row-span-2">
<DriveDockAction layout="desktop" expand driveDockState={driveDockState} />
<DriveDockAction layout="desktop" expand={hideInlineControls} driveDockState={driveDockState} />
</div>
{!hideInlineControls ? <InlineCameraTilt keymap={keymap} /> : null}
</div>
+1 -1
View File
@@ -39,7 +39,7 @@ function DriveDockPanel() {
return (
<section className="panel-section flex h-full flex-col gap-0.5">
<DriveDockAction layout="desktop" expand driveDockState={driveDockState} />
<DriveDockAction layout="desktop" expand={hideInlineControls} driveDockState={driveDockState} />
{!hideInlineControls ? <InlineCameraTilt keymap={keymap} /> : null}
</section>
);