mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-22 07:41:20 -04:00
* Disable RTT display by default.
* flipped RTT horizontal axis, and added "New" and "Old" Indicators. * only consider visible points for maxRTT (vertical scale) of plot. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4526 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
3623b3d957
commit
a9bdb5119f
2 changed files with 31 additions and 14 deletions
|
@ -41,7 +41,6 @@
|
|||
#include "FileTransferInfoWidget.h"
|
||||
#include "TurtleRouterDialog.h"
|
||||
#include "TurtleRouterStatistics.h"
|
||||
#include "VoipStatistics.h"
|
||||
#include "xprogressbar.h"
|
||||
#include "settings/rsharesettings.h"
|
||||
|
||||
|
@ -50,6 +49,14 @@
|
|||
#include <retroshare/rsdisc.h>
|
||||
#include "util/misc.h"
|
||||
|
||||
/****
|
||||
* #define SHOW_RTT_STATISTICS 1
|
||||
****/
|
||||
|
||||
#ifdef SHOW_RTT_STATISTICS
|
||||
#include "VoipStatistics.h"
|
||||
#endif
|
||||
|
||||
/* Images for context menu icons */
|
||||
#define IMAGE_INFO ":/images/fileinfo.png"
|
||||
#define IMAGE_CANCEL ":/images/delete.png"
|
||||
|
@ -268,7 +275,9 @@ TransfersDialog::TransfersDialog(QWidget *parent)
|
|||
|
||||
ui.tabWidget->addTab( new TurtleRouterDialog(), tr("Router Requests")) ;
|
||||
|
||||
#ifdef SHOW_RTT_STATISTICS
|
||||
ui.tabWidget->addTab( new VoipStatistics(), tr("RTT Statistics")) ;
|
||||
#endif
|
||||
|
||||
|
||||
// TurtleRouterDialog *trdl = new TurtleRouterDialog();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue