mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-25 01:01:40 -04:00
Added ConnectProgressDialog - to help people workout why RS is not connecting.
- Pops up when you do a "Connect Attempt" from the FriendList. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6590 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
f519ae1a0d
commit
b566d6d69c
7 changed files with 1297 additions and 0 deletions
|
@ -51,6 +51,11 @@
|
|||
#include "util/misc.h"
|
||||
#include "vmessagebox.h"
|
||||
|
||||
#define PROGRESS_DIALOG 1
|
||||
#ifdef PROGRESS_DIALOG
|
||||
#include "gui/connect/ConnectProgressDialog.h"
|
||||
#endif
|
||||
|
||||
#include "FriendList.h"
|
||||
#include "ui_FriendList.h"
|
||||
|
||||
|
@ -1491,6 +1496,9 @@ void FriendList::connectfriend()
|
|||
//this is a SSL key
|
||||
rsPeers->connectAttempt(getRsId(c));
|
||||
c->setIcon(COLUMN_NAME,(QIcon(IMAGE_CONNECT2)));
|
||||
#ifdef PROGRESS_DIALOG
|
||||
ConnectProgressDialog::showProgress(getRsId(c));
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue