From e876e2ec1f5be46aa3689591efb52608aa16a273 Mon Sep 17 00:00:00 2001 From: sungmin ha Date: Thu, 6 Sep 2012 17:57:16 +0900 Subject: [PATCH] [Title]modified popup position when call list is full [Type]Bugfix [Module]eventinjector-eplugin [Priority]Minor [Jira#] // Jira Issue Number [Redmine#] // Redmine Isuue Number [Problem] // Problem Description [Cause] // Cause Description [Solution] // Solution Description [TestCase] // Executed the test-target (How to) --- .../src/org/tizen/injector/telephony/call/page/MOMTCall.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/org.tizen.injector.telephony.call/src/org/tizen/injector/telephony/call/page/MOMTCall.java b/org.tizen.injector.telephony.call/src/org/tizen/injector/telephony/call/page/MOMTCall.java index ab0d30d..dce5489 100644 --- a/org.tizen.injector.telephony.call/src/org/tizen/injector/telephony/call/page/MOMTCall.java +++ b/org.tizen.injector.telephony.call/src/org/tizen/injector/telephony/call/page/MOMTCall.java @@ -450,6 +450,12 @@ ISelectionListener{ return; } + if(listfull == true) + { + Shell shell = parent.getShell(); + InjectorDialog.openInfoDialog(shell, InjectorDialog.TITLE, "There are many pending connections.\nCan't connect anymore."); + } + if(incomming == true) { showDialog("User is busy.\nPlease try again later."); @@ -660,12 +666,6 @@ ISelectionListener{ emulChange = false; } - if(listfull == true) - { - Shell shell = parent.getShell(); - InjectorDialog.openInfoDialog(shell, InjectorDialog.TITLE, "There are many pending connections.\nCan't connect anymore."); - } - if(loopCount == 6) listfull = true; else -- 2.7.4