Skip to content
Snippets Groups Projects
Commit ed02d8f7 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

#10725: Remove logging in seekslider when no selected call

parent a0dec876
Branches
No related tags found
No related merge requests found
......@@ -300,15 +300,12 @@ static void sfl_seekslider_play_playback_record_cb (GtkButton *button G_GNUC_UNU
callable_obj_t *selectedCall = calltab_get_selected_call(history_tab);
if (selectedCall == NULL) {
ERROR("No selected object in playback record callback");
return;
}
DEBUG("Start selected call file playback %s", selectedCall->_recordfile);
selectedCall->_record_is_playing = dbus_start_recorded_file_playback(selectedCall->_recordfile);
// update_actions();
sfl_seekslider_set_display(seekslider, SFL_SEEKSLIDER_DISPLAY_PAUSE);
}
......@@ -337,8 +334,6 @@ static void sfl_seekslider_stop_playback_record_cb (GtkButton *button G_GNUC_UNU
selectedCall->_record_is_playing = FALSE;
}
// update_actions();
sfl_seekslider_set_display(seekslider, SFL_SEEKSLIDER_DISPLAY_PLAY);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment