Skip to content

Commit

Permalink
Reorganized filter settings
Browse files Browse the repository at this point in the history
  • Loading branch information
parzival-space committed Aug 9, 2024
1 parent 0b50f44 commit b98a2c8
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions FaderSyncPlugin/OBS/GoXlrChannelSyncFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,10 @@ private static unsafe void GetDefaults(obs_data* settings)
sChannelLineOutId = "LineOut"u8.ToArray()
)
{
// Create the Serial Dropdown..
var deviceList = ObsProperties.obs_properties_add_list(properties, (sbyte*)sDeviceSerialId, (sbyte*)sDeviceSerialDescription,
obs_combo_type.OBS_COMBO_TYPE_LIST, obs_combo_format.OBS_COMBO_FORMAT_STRING);

// channel selection list
var channelList = ObsProperties.obs_properties_add_list(properties, (sbyte*)sChannelNameId,
(sbyte*)sChannelNameDescription, obs_combo_type.OBS_COMBO_TYPE_LIST,
Expand All @@ -202,12 +206,6 @@ private static unsafe void GetDefaults(obs_data* settings)
ObsProperties.obs_property_list_add_string(channelList, (sbyte*)sChannelMicMonitor, (sbyte*)sChannelMicMonitorId);
ObsProperties.obs_property_list_add_string(channelList, (sbyte*)sChannelLineOut, (sbyte*)sChannelLineOutId);


// Create the Serial Dropdown..
var deviceList = ObsProperties.obs_properties_add_list(properties, (sbyte*)sDeviceSerialId, (sbyte*)sDeviceSerialDescription,
obs_combo_type.OBS_COMBO_TYPE_LIST, obs_combo_format.OBS_COMBO_FORMAT_STRING);


// Before we Proceed, we need to fetch a list of the available GoXLRs on the System..
var utility = UtilitySingleton.GetInstance();
var mixers = (JsonObject)utility.Status?["mixers"];
Expand Down

0 comments on commit b98a2c8

Please sign in to comment.