Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
95a8c71f
Commit
95a8c71f
authored
17 years ago
by
Guillaume Carmel-Archambault
Browse files
Options
Downloads
Patches
Plain Diff
Temporarly deactive audio device selection until portaudio is removed
parent
569b8d68
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sflphone-gtk/src/configwindow.c
+8
-8
8 additions, 8 deletions
sflphone-gtk/src/configwindow.c
with
8 additions
and
8 deletions
sflphone-gtk/src/configwindow.c
+
8
−
8
View file @
95a8c71f
...
...
@@ -348,12 +348,12 @@ static void
detect_all_audio_settings
()
{
// Update lists
config_window_fill_output_audio_device_list
();
config_window_fill_input_audio_device_list
();
//
config_window_fill_output_audio_device_list();
//
config_window_fill_input_audio_device_list();
// Select active device in combo box
select_active_output_audio_device
();
select_active_input_audio_device
();
//
select_active_output_audio_device();
//
select_active_input_audio_device();
}
/**
...
...
@@ -919,9 +919,9 @@ create_audio_tab ()
gtk_widget_show
(
titleLabel
);
// Set choices of output devices
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
));
select_active_output_audio_device
();
//
select_active_output_audio_device();
gtk_label_set_mnemonic_widget
(
GTK_LABEL
(
titleLabel
),
outputDeviceComboBox
);
g_signal_connect
(
G_OBJECT
(
outputDeviceComboBox
),
"changed"
,
G_CALLBACK
(
select_audio_output_device
),
outputDeviceComboBox
);
...
...
@@ -940,9 +940,9 @@ create_audio_tab ()
gtk_widget_show
(
titleLabel
);
// Set choices of output devices
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
));
select_active_input_audio_device
();
//
select_active_input_audio_device();
gtk_label_set_mnemonic_widget
(
GTK_LABEL
(
titleLabel
),
inputDeviceComboBox
);
g_signal_connect
(
G_OBJECT
(
inputDeviceComboBox
),
"changed"
,
G_CALLBACK
(
select_audio_input_device
),
inputDeviceComboBox
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment