From bd29e563601fa14209e552b4e7ef0afd524a83ff Mon Sep 17 00:00:00 2001 From: Edric Milaret Date: Mon, 21 Sep 2015 11:53:27 -0400 Subject: [PATCH] settings: fix selection changed on codec panel Issue: #80645 Change-Id: Ibf11039499a2362aeb13f1ea5ecdd6ea19d68feb --- accountdetails.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/accountdetails.cpp b/accountdetails.cpp index b4c1afe..89bd8cf 100644 --- a/accountdetails.cpp +++ b/accountdetails.cpp @@ -142,6 +142,10 @@ AccountDetails::reloadCodec(CodecType type) this, SLOT(audio_codec_checked(int, int))); connect(ui->videoCodecView, SIGNAL(cellChanged(int,int)), this, SLOT(video_codec_checked(int,int))); + connect(ui->audioCodecView, SIGNAL(itemSelectionChanged()), + this, SLOT(on_audioCodecView_itemSelectionChanged())); + connect(ui->videoCodecView, SIGNAL(itemSelectionChanged()), + this, SLOT(on_videoCodecView_itemSelectionChanged())); } void -- GitLab