Skip to content

Commit

Permalink
feat: add scaleFactor to Monitor; fix incorrect Monitor propert…
Browse files Browse the repository at this point in the history
…y names
  • Loading branch information
lars-berger committed Oct 4, 2024
1 parent ac3df29 commit c125608
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/types/containers/monitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ export interface Monitor {
children: Workspace[];
hasFocus: boolean;
dpi: number;
scaleFactor: number;
width: number;
height: number;
x: number;
y: number;
handle: number;
device_name: string;
device_path: string | null;
hardware_id: string | null;
working_rect: Rect;
deviceName: string;
devicePath: string | null;
hardwareId: string | null;
workingRect: Rect;
}

0 comments on commit c125608

Please sign in to comment.