Changeset 4490

Show
Ignore:
Timestamp:
07/07/06 04:34:16 (2 years ago)
Author:
erijo
Message:

Disable the message input widget while sending the message.

Closes #767.

Files:
1 modified

Legend:

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

    r4483 r4490  
    22632263    btnSend->setText(tr("&Cancel")); 
    22642264    btnClose->setEnabled(false); 
     2265    mleSend->setEnabled(false); 
    22652266    disconnect(btnSend, SIGNAL(clicked()), this, SLOT(sendButton())); 
    22662267    connect(btnSend, SIGNAL(clicked()), this, SLOT(slot_cancelSend())); 
     
    23462347  btnSend->setText(tr("&Send")); 
    23472348  btnClose->setEnabled(true); 
     2349  mleSend->setEnabled(true); 
    23482350  disconnect(btnSend, SIGNAL(clicked()), this, SLOT(slot_cancelSend())); 
    23492351  connect(btnSend, SIGNAL(clicked()), this, SLOT(sendButton()));