1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-27 06:49:37 +02:00

Moved some settings between general and ui tabs

This commit is contained in:
Paweł Malak 2022-02-04 14:59:48 +01:00
parent 04e80b339c
commit 500e138643
4 changed files with 60 additions and 123 deletions

View file

@ -9,28 +9,28 @@ export interface WeatherForm {
}
export interface GeneralForm {
hideSearch: boolean;
defaultSearchProvider: string;
searchSameTab: boolean;
disableAutofocus: boolean;
}
export interface OtherSettingsForm {
customTitle: string;
pinAppsByDefault: boolean;
pinCategoriesByDefault: boolean;
hideHeader: boolean;
hideApps: boolean;
hideCategories: boolean;
useOrdering: string;
appsSameTab: boolean;
bookmarksSameTab: boolean;
}
export interface UISettingsForm {
customTitle: string;
hideHeader: boolean;
hideApps: boolean;
hideCategories: boolean;
useAmericanDate: boolean;
greetingsSchema: string;
daySchema: string;
monthSchema: string;
showTime: boolean;
hideDate: boolean;
hideSearch: boolean;
disableAutofocus: boolean;
}
export interface DockerSettingsForm {