fix panel scroll

+ move to bottom when minimized
This commit is contained in:
Felix Roos 2023-08-18 23:45:55 +02:00
parent 3afe540111
commit 37a35022f5
3 changed files with 5 additions and 4 deletions

View file

@ -28,6 +28,7 @@ export function useSettings() {
isAutoCompletionEnabled: [true, 'true'].includes(state.isAutoCompletionEnabled) ? true : false,
isLineWrappingEnabled: [true, 'true'].includes(state.isLineWrappingEnabled) ? true : false,
fontSize: Number(state.fontSize),
panelPosition: state.activeFooter !== '' ? state.panelPosition : 'bottom',
};
}