- Timestamp:
- Sep 5, 2006, 1:36:24 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
psi/trunk/src/chatdlg.cpp
r2 r20 1031 1031 // if we're not active, notify the user by changing the title 1032 1032 if(!isActiveWindow() || isHidden()) { //isHidden==tab hack 1033 ++d->pending; 1034 updateCaption(); 1035 doFlash(true); 1036 if(option.raiseChatWindow) 1037 bringToFront(this, false); 1033 if (!isActiveWindow() || !option.raiseChatWindow) { 1034 ++d->pending; 1035 updateCaption(); 1036 doFlash(true); 1037 } 1038 TabDlg *dlg = d->pa->psi()->getManagingTabs(this); 1039 if(option.raiseChatWindow) { 1040 if (!dlg) { 1041 bringToFront(this, false); 1042 } else { 1043 dlg->selectTab(this); 1044 bringToFront(dlg, false); 1045 } 1046 } 1038 1047 } 1039 1048 //else {
Note:
See TracChangeset
for help on using the changeset viewer.