SPARK-603 SIP: Caller ID missing from incoming call notification.

SPARK-604  	 SIP: wrong icon in missed calls list
SPARK-606  	 SIP: escape button doesn't work on dedicated call tab.
SPARK-592  	 Fixed stale chats.

git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@7592 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Derek DeMoro
2007-03-19 04:52:28 +00:00
committed by derek
parent 66464097c7
commit 229248f150

View File

@ -195,6 +195,9 @@ public class ChatContainer extends SparkTabbedPane implements MessageListener, C
});
this.getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(KeyStroke.getKeyStroke("ESCAPE"), "escape");
this.getInputMap(JComponent.WHEN_FOCUSED).put(KeyStroke.getKeyStroke("ESCAPE"), "escape");
this.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke("ESCAPE"), "escape");
this.getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(KeyStroke.getKeyStroke("Ctrl W"), "escape");
this.getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(KeyStroke.getKeyStroke(KeyEvent.VK_W, Toolkit.getDefaultToolkit().getMenuShortcutKeyMask()), "escape");