feat: Add option to disable the window frame (#400)

Co-authored-by: Ven <vendicated@riseup.net>
This commit is contained in:
Nick 2023-01-12 17:48:37 -05:00 committed by GitHub
parent e70abc57b6
commit 10fd51071e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 2 deletions

View file

@ -30,6 +30,7 @@ export interface Settings {
useQuickCss: boolean;
enableReactDevtools: boolean;
themeLinks: string[];
frameless: boolean;
plugins: {
[plugin: string]: {
enabled: boolean;
@ -43,6 +44,7 @@ const DefaultSettings: Settings = {
useQuickCss: true,
themeLinks: [],
enableReactDevtools: false,
frameless: false,
plugins: {}
};