Fix: Allow vertical monitors to be recorded properly instead of erroring. (#861)

This commit is contained in:
Jas Singh
2025-03-24 22:25:15 -07:00
committed by GitHub
parent dba7ac64c6
commit 8068663466
2 changed files with 43 additions and 24 deletions

View File

@@ -3,6 +3,7 @@ import { Variable } from 'types/variable';
import { defaultColorMap } from './defaults/options';
import { Astal } from 'astal/gtk3';
import { dropdownMenuList } from '../constants/options';
import { FontStyle } from 'src/components/settings/shared/inputs/font/utils';
export type MkOptionsResult = {
array: () => Opt[];
@@ -104,7 +105,7 @@ export interface RowProps<T> {
subtitleLink?: string;
dependencies?: string[];
increment?: number;
fontStyle?: Opt<string>;
fontStyle?: Opt<FontStyle>;
fontLabel?: Opt<string>;
}