mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-02-18 13:29:36 +01:00
feat: hide penMode button on reload if not enabled (#4992)
This commit is contained in:
parent
734bb4d2ed
commit
9ba7ca3845
@ -252,6 +252,10 @@ export const restoreAppState = (
|
||||
}
|
||||
return {
|
||||
...nextAppState,
|
||||
// reset on fresh restore so as to hide the UI button if penMode not active
|
||||
penDetected:
|
||||
localAppState?.penDetected ??
|
||||
(appState.penMode ? appState.penDetected ?? false : false),
|
||||
activeTool: {
|
||||
lastActiveToolBeforeEraser: null,
|
||||
locked: nextAppState.activeTool.locked ?? false,
|
||||
|
Loading…
Reference in New Issue
Block a user