mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-12 22:09:25 +08:00
System tray icon: Stop blinking when refusing an incoming call
This commit is contained in:
@ -196,6 +196,7 @@ sflphone_hang_up()
|
||||
dbus_hang_up (selectedCall);
|
||||
break;
|
||||
case CALL_STATE_INCOMING:
|
||||
status_tray_icon_blink();
|
||||
dbus_refuse (selectedCall);
|
||||
break;
|
||||
case CALL_STATE_TRANSFERT:
|
||||
@ -465,6 +466,7 @@ sflphone_keypad( guint keyval, gchar * key)
|
||||
dbus_accept(c);
|
||||
break;
|
||||
case 65307: /* ESCAPE */
|
||||
status_tray_icon_blink();
|
||||
dbus_refuse(c);
|
||||
break;
|
||||
}
|
||||
|
@ -313,11 +313,9 @@ select_active_input_audio_device()
|
||||
void
|
||||
update_combo_box( gchar* plugin )
|
||||
{
|
||||
g_print("INSENSITIVE THE ALL THING\n");
|
||||
// set insensitive the devices widget if the selected plugin is default
|
||||
if( g_strcasecmp( plugin , "default" ) == 0)
|
||||
{
|
||||
g_print("INSENSITIVE THE ALL THING\n");
|
||||
gtk_widget_set_sensitive( GTK_WIDGET ( outputDeviceComboBox ) , FALSE );
|
||||
gtk_widget_set_sensitive( GTK_WIDGET ( inputDeviceComboBox ) , FALSE );
|
||||
}
|
||||
|
Reference in New Issue
Block a user