Removed the warning when closing the contact list window on Mac systems. The applications on MacOSX are not quited on window close, so we don't need to warn the user.

cusax-fix
Yana Stamcheva 13 years ago
parent 1a3cb8b5a4
commit d735b29331

@ -1880,7 +1880,10 @@ protected void windowClosing(WindowEvent event)
{
super.windowClosing(event);
if (!GuiActivator.getUIService().getExitOnMainWindowClose())
// On Mac systems the application is not quited on window close, so we
// don't need to warn the user.
if (!GuiActivator.getUIService().getExitOnMainWindowClose()
&& !OSUtils.IS_MAC)
{
SwingUtilities.invokeLater(new Runnable()
{

Loading…
Cancel
Save