Skip to content

Commit

Permalink
Merge branch 'master' of github.com:CVMEventi/Countdown
Browse files Browse the repository at this point in the history
  • Loading branch information
cipi1965 committed Jun 10, 2024
2 parents ab0dcbe + 5d1e574 commit ec61926
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/Utilities/addIpcHandles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {CountdownApp} from "../App";
import {sleep} from "./utilities";
import {
DEFAULT_NDI_ALPHA,
DEFAULT_NDI_ENABLED, DEFAULT_OSC_ENABLED, DEFAULT_OSC_PORT,
DEFAULT_NDI_ENABLED, DEFAULT_OSC_ENABLED, DEFAULT_OSC_PORT, DEFAULT_SET_TIME_LIVE,
DEFAULT_TIMER_ALWAYS_ON_TOP, DEFAULT_TIMER_DURATION,
DEFAULT_WINDOW_BOUNDS
} from "../../common/config";
Expand Down Expand Up @@ -68,6 +68,8 @@ export default function addIpcHandles(app: CountdownApp)
app.ndiServer.alpha = app.store.get('settings.ndiAlpha', DEFAULT_NDI_ALPHA);

app.timerEngine.setTimerInterval(app.store.get('settings.timerDuration', DEFAULT_TIMER_DURATION));

app.timerEngine.setTimeLive = app.store.get('settings.setTimeLive', DEFAULT_SET_TIME_LIVE);
})

ipcMain.on('send-to-countdown-window', (event, arg) => {
Expand Down

0 comments on commit ec61926

Please sign in to comment.