From ae4ac63085d47326283b6a1559efe812a238b1cc Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Fri, 21 Mar 2025 14:46:14 -0400 Subject: [PATCH] whoops properly set toggle PTT mode on startup; --- dvmconsole/MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dvmconsole/MainWindow.xaml.cs b/dvmconsole/MainWindow.xaml.cs index a004438..1dbff0b 100644 --- a/dvmconsole/MainWindow.xaml.cs +++ b/dvmconsole/MainWindow.xaml.cs @@ -344,7 +344,7 @@ namespace dvmconsole // iterate through zone channels foreach (var channel in zone.Channels) { - ChannelBox channelBox = new ChannelBox(selectedChannelsManager, audioManager, channel.Name, channel.System, channel.Tgid, true); + ChannelBox channelBox = new ChannelBox(selectedChannelsManager, audioManager, channel.Name, channel.System, channel.Tgid, settingsManager.TogglePTTMode); systemStatuses.Add(channel.Name, new SlotStatus()); if (settingsManager.ChannelPositions.TryGetValue(channel.Name, out var position))