Browse Source

fix: returned initial appState, added missing constant

Arnošt Pleskot 1 year ago
parent
commit
13ea98e2e5
2 changed files with 3 additions and 2 deletions
  1. 2 2
      src/appState.ts
  2. 1 0
      src/constants.ts

+ 2 - 2
src/appState.ts

@@ -66,7 +66,7 @@ export const getDefaultAppState = (): Omit<
     openMenu: null,
     openMenu: null,
     openPopup: null,
     openPopup: null,
     openSidebar: null,
     openSidebar: null,
-    openDialog: "imageExport",
+    openDialog: null,
     pasteDialog: { shown: false, data: null },
     pasteDialog: { shown: false, data: null },
     previousSelectedElementIds: {},
     previousSelectedElementIds: {},
     resizingElement: null,
     resizingElement: null,
@@ -95,7 +95,7 @@ export const getDefaultAppState = (): Omit<
     pendingImageElementId: null,
     pendingImageElementId: null,
     showHyperlinkPopup: false,
     showHyperlinkPopup: false,
     selectedLinearElement: null,
     selectedLinearElement: null,
-    fancyBackgroundImageKey: "bubbles",
+    fancyBackgroundImageKey: DEFAULT_FANCY_BACKGROUND_IMAGE,
   };
   };
 };
 };
 
 

+ 1 - 0
src/constants.ts

@@ -246,6 +246,7 @@ export const FANCY_BG_BORDER_RADIUS = 12; // px
 export const FANCY_BG_LOGO_PADDING = 20; // px
 export const FANCY_BG_LOGO_PADDING = 20; // px
 export const FANCY_BG_LOGO_BOTTOM_PADDING = 12; // px
 export const FANCY_BG_LOGO_BOTTOM_PADDING = 12; // px
 export const FANCY_BG_INCLUDE_LOGO = true;
 export const FANCY_BG_INCLUDE_LOGO = true;
+export const FANCY_BG_STRETCH_CONTENT_BACKGROUND = true;
 export const DEFAULT_FANCY_BACKGROUND_RATIO: Dimensions = {
 export const DEFAULT_FANCY_BACKGROUND_RATIO: Dimensions = {
   width: 16,
   width: 16,
   height: 9,
   height: 9,