commit 4eb24c4b91e6843455012419c3ab6f3107d0b312
parent d6de7fb8b92b79552f83c7c275d1b198dd9350d7
Author: mcol <mcol@posteo.net>
Date: Sat, 27 Jun 2020 19:46:26 +0100
change default window and panel pos and sizes
Diffstat:
2 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/src/features/panel/slice.js b/src/features/panel/slice.js
@@ -5,8 +5,8 @@ export const panelSlice = createSlice({
name: 'panel',
initialState: {
- x: 30,
- y: 30,
+ x: 870,
+ y: 359,
},
reducers: {
diff --git a/src/features/windows/slice.js b/src/features/windows/slice.js
@@ -5,9 +5,8 @@ export const windowSlice = createSlice({
name: 'windows',
initialState: [
- { x: 240, y: 120, width: 340, height: 220 },
- { x: 660, y: 220, width: 340, height: 220 },
- { x: 360, y: 380, width: 260, height: 160 },
+ { x: 400, y: 150, width: 440, height: 300 },
+ { x: 580, y: 480, width: 260, height: 240 },
],
reducers: {