diff --git a/src/App.tsx b/src/App.tsx
index 8e53f59e5..3fa2cf905 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -132,7 +132,12 @@ export function App() {
useHotkeys('shift + e', () => togglePane('kclErrors'))
useHotkeys('shift + d', () => togglePane('debug'))
- const paneOpacity = onboardingStatus === 'camera' ? 'opacity-20' : ''
+ const paneOpacity =
+ onboardingStatus === 'camera'
+ ? 'opacity-20'
+ : isMouseDownInStream
+ ? 'opacity-40'
+ : ''
// const onChange = React.useCallback((value: string, viewUpdate: ViewUpdate) => {
const onChange = (value: string, viewUpdate: ViewUpdate) => {
@@ -353,13 +358,15 @@ export function App() {
>