Show
Ignore:
Timestamp:
11/05/06 20:56:35 (2 years ago)
Author:
erijo
Message:

Option to show/hide contact picture in popup. Thanks to Anders Olofsson (flynd) for the patch.

Closes #1441.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/qt-gui/src/optionsdlg.cpp

    r4716 r4734  
    260260  chkMsgWinSticky->setChecked(mainwin->m_bMsgWinSticky); 
    261261  chkSingleLineChatMode->setChecked(mainwin->m_bSingleLineChatMode); 
     262  popPicture->setChecked(mainwin->m_bPopPicture); 
    262263  popAlias->setChecked(mainwin->m_bPopAlias); 
    263264  popName->setChecked(mainwin->m_bPopName); 
     
    549550  mainwin->m_bSingleLineChatMode = chkSingleLineChatMode->isChecked(); 
    550551 
     552  mainwin->m_bPopPicture = popPicture->isChecked(); 
    551553  mainwin->m_bPopAlias = popAlias->isChecked(); 
    552554  mainwin->m_bPopName = popName->isChecked(); 
     
    14521454  boxPopWin = new QGroupBox(1, Horizontal, tr("Popup info"), w); 
    14531455 
     1456  popPicture= new QCheckBox(tr("Picture"), boxPopWin); 
    14541457  popAlias  = new QCheckBox(tr("Alias"), boxPopWin); 
    14551458  popName   = new QCheckBox(tr("Name"),  boxPopWin);