long press DTMF button and release, on release unwanted tone play occurs
authorAmit Kumar <a.kumar35@samsung.com>
Fri, 16 Aug 2013 09:48:24 +0000 (15:18 +0530)
committerAmit Kumar <a.kumar35@samsung.com>
Fri, 16 Aug 2013 09:48:24 +0000 (15:18 +0530)
Change-Id: I46d7dbaa47b9705f7f9f62737ca4129c56ffc189
Signed-off-by: Amit Kumar <a.kumar35@samsung.com>
project/src/Audio/TonePlayerForm.cpp

index 60c0c76..e5a63e9 100644 (file)
@@ -727,7 +727,10 @@ TonePlayerForm::OnActionPerformed(const Tizen::Ui::Control& source, int actionId
                ClearErrorPopup();
                break;
        default:
-               CallPlayDMF(source);
+               if(source.HasFocus() == true)
+               {
+                       CallPlayDMF(source);
+               }
                break;
        }
 }