mirror of
https://github.com/webadderallorg/Recordly.git
synced 2026-09-24 14:55:37 +00:00
9 lines
255 B
TypeScript
9 lines
255 B
TypeScript
/** An editor may stay open behind the HUD while a new capture is prepared. */
|
|
export function isHudInEditorMode(
|
|
editorCount: number,
|
|
preparingRecording: boolean,
|
|
recording: boolean,
|
|
) {
|
|
return editorCount > 0 && !preparingRecording && !recording;
|
|
}
|