mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-15 09:33:03 -04:00
feat: Add option to disable the window frame (#400)
Co-authored-by: Ven <vendicated@riseup.net>
This commit is contained in:
parent
e70abc57b6
commit
10fd51071e
3 changed files with 15 additions and 2 deletions
|
@ -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: {}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue