don't bring window to front if it's minimized

cusax-fix
Yana Stamcheva 19 years ago
parent 2cc59d47af
commit da2e55d12e

@ -67,10 +67,10 @@ public void openChat(ChatPanel chatPanel, boolean setSelected)
}
if(chatWindow.isVisible())
{
if (ConfigurationManager.isAutoPopupNewMessage() || setSelected)
{
if (ConfigurationManager.isAutoPopupNewMessage())
{
if(chatWindow.getState() == JFrame.ICONIFIED)
if(chatWindow.getState() == JFrame.ICONIFIED && setSelected)
chatWindow.setState(JFrame.NORMAL);
chatWindow.toFront();

Loading…
Cancel
Save