Close chat tabs with the middle mouse button. Patch provided by Arnaud Roemer (02/12 on dev with subject "[PATCH] closing chat tabs with middle mouse button")

cusax-fix
Yana Stamcheva 16 years ago
parent 59598db4ce
commit 7282d6fc03

@ -1689,6 +1689,9 @@ public void mouseReleased(MouseEvent e)
return;
}
// Allow tabs closing with mouse middle button
if (e.getButton() == MouseEvent.BUTTON2)
((SIPCommTabbedPane) tabPane).fireCloseTabEvent(e, overTabIndex);
}
public void mouseExited(MouseEvent e)

Loading…
Cancel
Save