mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2025-01-24 04:25:31 +00:00
parent
8a299d6dc7
commit
caa74fa441
1 changed files with 6 additions and 1 deletions
|
@ -264,7 +264,12 @@ set_state (CallsUiCallData *self,
|
||||||
cui_call_state_to_string (old_state),
|
cui_call_state_to_string (old_state),
|
||||||
cui_call_state_to_string (new_state));
|
cui_call_state_to_string (new_state));
|
||||||
|
|
||||||
if (new_state == CUI_CALL_STATE_ACTIVE) {
|
/* Check for started timer, because state could have changed like this:
|
||||||
|
* ACTIVE -> HELD -> ACTIVE
|
||||||
|
* and we don't want to start the timer multiple times
|
||||||
|
*/
|
||||||
|
if (new_state == CUI_CALL_STATE_ACTIVE && !self->timer) {
|
||||||
|
|
||||||
self->timer = g_timer_new ();
|
self->timer = g_timer_new ();
|
||||||
self->timer_id = g_timeout_add (500,
|
self->timer_id = g_timeout_add (500,
|
||||||
G_SOURCE_FUNC (on_timer_ticked),
|
G_SOURCE_FUNC (on_timer_ticked),
|
||||||
|
|
Loading…
Reference in a new issue