mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-21 05:39:11 -04:00
added method to show a given post author into the people tab
This commit is contained in:
parent
64737827a1
commit
3a92124aac
6 changed files with 151 additions and 31 deletions
|
@ -352,7 +352,6 @@ void MainWindow::initStackedPage()
|
|||
addPage(peopleDialog = new PeopleDialog(ui->stackPages), grp, ¬ify);
|
||||
#endif
|
||||
|
||||
IdDialog *idDialog = NULL;
|
||||
addPage(idDialog = new IdDialog(ui->stackPages), grp, ¬ify);
|
||||
|
||||
//#ifdef RS_USE_CIRCLES
|
||||
|
@ -878,6 +877,9 @@ void SetForegroundWindowInternal(HWND hWnd)
|
|||
case Friends:
|
||||
_instance->ui->stackPages->setCurrentPage( _instance->friendsDialog );
|
||||
break;
|
||||
case People:
|
||||
_instance->ui->stackPages->setCurrentPage( _instance->idDialog );
|
||||
break;
|
||||
case ChatLobby:
|
||||
_instance->ui->stackPages->setCurrentPage( _instance->chatLobbyDialog );
|
||||
break;
|
||||
|
@ -974,6 +976,8 @@ void SetForegroundWindowInternal(HWND hWnd)
|
|||
return _instance->friendsDialog->networkDialog;
|
||||
case Friends:
|
||||
return _instance->friendsDialog;
|
||||
case People:
|
||||
return _instance->idDialog;
|
||||
case ChatLobby:
|
||||
return _instance->chatLobbyDialog;
|
||||
case Transfers:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue