mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-30 11:24:24 -04:00
Merge pull request #1988 from PhenomRetroShare/Fix_MessageDeleteLast
Fix Message Delete Last to clear widget.
This commit is contained in:
commit
54364c488e
1 changed files with 4 additions and 1 deletions
|
@ -1105,7 +1105,10 @@ void MessagesDialog::removemessage()
|
|||
|
||||
void MessagesDialog::messageRemoved()
|
||||
{
|
||||
ui.messageTreeWidget->setCurrentIndex(lastSelectedIndex);
|
||||
if (lastSelectedIndex.isValid())
|
||||
ui.messageTreeWidget->setCurrentIndex(lastSelectedIndex);
|
||||
else
|
||||
insertMsgTxtAndFiles(QModelIndex());
|
||||
}
|
||||
|
||||
void MessagesDialog::undeletemessage()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue