Skip to content
Snippets Groups Projects
Commit 95a8c71f authored by Guillaume Carmel-Archambault's avatar Guillaume Carmel-Archambault
Browse files

Temporarly deactive audio device selection until portaudio is removed

parent 569b8d68
No related branches found
No related tags found
No related merge requests found
...@@ -348,12 +348,12 @@ static void ...@@ -348,12 +348,12 @@ static void
detect_all_audio_settings() detect_all_audio_settings()
{ {
// Update lists // Update lists
config_window_fill_output_audio_device_list(); // config_window_fill_output_audio_device_list();
config_window_fill_input_audio_device_list(); // config_window_fill_input_audio_device_list();
// Select active device in combo box // Select active device in combo box
select_active_output_audio_device(); // select_active_output_audio_device();
select_active_input_audio_device(); // select_active_input_audio_device();
} }
/** /**
...@@ -919,9 +919,9 @@ create_audio_tab () ...@@ -919,9 +919,9 @@ create_audio_tab ()
gtk_widget_show(titleLabel); gtk_widget_show(titleLabel);
// Set choices of output devices // Set choices of output devices
outputAudioDeviceManagerStore = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_INT); outputAudioDeviceManagerStore = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_INT);
config_window_fill_output_audio_device_list(); // config_window_fill_output_audio_device_list();
outputDeviceComboBox = gtk_combo_box_new_with_model(GTK_TREE_MODEL(outputAudioDeviceManagerStore)); outputDeviceComboBox = gtk_combo_box_new_with_model(GTK_TREE_MODEL(outputAudioDeviceManagerStore));
select_active_output_audio_device(); // select_active_output_audio_device();
gtk_label_set_mnemonic_widget(GTK_LABEL(titleLabel), outputDeviceComboBox); gtk_label_set_mnemonic_widget(GTK_LABEL(titleLabel), outputDeviceComboBox);
g_signal_connect(G_OBJECT(outputDeviceComboBox), "changed", G_CALLBACK(select_audio_output_device), outputDeviceComboBox); g_signal_connect(G_OBJECT(outputDeviceComboBox), "changed", G_CALLBACK(select_audio_output_device), outputDeviceComboBox);
...@@ -940,9 +940,9 @@ create_audio_tab () ...@@ -940,9 +940,9 @@ create_audio_tab ()
gtk_widget_show(titleLabel); gtk_widget_show(titleLabel);
// Set choices of output devices // Set choices of output devices
inputAudioDeviceManagerStore = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_INT); inputAudioDeviceManagerStore = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_INT);
config_window_fill_input_audio_device_list(); // config_window_fill_input_audio_device_list();
inputDeviceComboBox = gtk_combo_box_new_with_model(GTK_TREE_MODEL(inputAudioDeviceManagerStore)); inputDeviceComboBox = gtk_combo_box_new_with_model(GTK_TREE_MODEL(inputAudioDeviceManagerStore));
select_active_input_audio_device(); // select_active_input_audio_device();
gtk_label_set_mnemonic_widget(GTK_LABEL(titleLabel), inputDeviceComboBox); gtk_label_set_mnemonic_widget(GTK_LABEL(titleLabel), inputDeviceComboBox);
g_signal_connect(G_OBJECT(inputDeviceComboBox), "changed", G_CALLBACK(select_audio_input_device), inputDeviceComboBox); g_signal_connect(G_OBJECT(inputDeviceComboBox), "changed", G_CALLBACK(select_audio_input_device), inputDeviceComboBox);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment