mirror of
https://github.com/igniterealtime/Spark.git
synced 2025-12-01 12:27:58 +00:00
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:
@ -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");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user