@dfosco/storyboard-core 4.2.0-alpha.12 → 4.2.0-alpha.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/canvas/server.js
CHANGED
|
@@ -1619,6 +1619,7 @@ export function Default() {
|
|
|
1619
1619
|
try {
|
|
1620
1620
|
execSync(`tmux new-session -d -s "${tmuxName}" -c "${root}"`, { stdio: 'ignore' })
|
|
1621
1621
|
execSync(`tmux set-option -t "${tmuxName}" status off`, { stdio: 'ignore' })
|
|
1622
|
+
execSync(`tmux set-option -t "${tmuxName}" mouse on`, { stdio: 'ignore' })
|
|
1622
1623
|
} catch (err) {
|
|
1623
1624
|
// Session may already exist
|
|
1624
1625
|
console.warn(`[storyboard] tmux session create:`, err.message)
|
|
@@ -311,6 +311,7 @@ function handleConnection(ws, widgetId, canvasId, prettyName) {
|
|
|
311
311
|
const hideStatus = () => {
|
|
312
312
|
try {
|
|
313
313
|
execSync(`tmux set-option -t "${targetName}" status off 2>/dev/null`, { stdio: 'ignore' })
|
|
314
|
+
execSync(`tmux set-option -t "${targetName}" mouse on 2>/dev/null`, { stdio: 'ignore' })
|
|
314
315
|
} catch {}
|
|
315
316
|
}
|
|
316
317
|
setTimeout(hideStatus, 200)
|