[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r1767: The circuits and streams listed on the network map want tool (trunk/src/gui/network)
Author: edmanm
Date: 2007-06-02 23:34:14 -0400 (Sat, 02 Jun 2007)
New Revision: 1767
Modified:
trunk/src/gui/network/circuititem.cpp
trunk/src/gui/network/streamitem.cpp
Log:
The circuits and streams listed on the network map want tooltips. Sometimes
I can't read the whole text.
Modified: trunk/src/gui/network/circuititem.cpp
===================================================================
--- trunk/src/gui/network/circuititem.cpp 2007-06-02 14:22:47 UTC (rev 1766)
+++ trunk/src/gui/network/circuititem.cpp 2007-06-03 03:34:14 UTC (rev 1767)
@@ -50,7 +50,9 @@
/* Update the column fields */
setText(CircuitListWidget::ConnectionColumn, displayedPath);
+ setToolTip(CircuitListWidget::ConnectionColumn, displayedPath);
setText(CircuitListWidget::StatusColumn, circuit.statusString());
+ setToolTip(CircuitListWidget::StatusColumn, circuit.statusString());
}
/** Adds a stream as a child of this circuit. */
Modified: trunk/src/gui/network/streamitem.cpp
===================================================================
--- trunk/src/gui/network/streamitem.cpp 2007-06-02 14:22:47 UTC (rev 1766)
+++ trunk/src/gui/network/streamitem.cpp 2007-06-03 03:34:14 UTC (rev 1767)
@@ -44,6 +44,8 @@
StreamItem::update(Stream stream)
{
setText(CircuitListWidget::ConnectionColumn, stream.target());
+ setToolTip(CircuitListWidget::ConnectionColumn, stream.target());
setText(CircuitListWidget::StatusColumn, stream.statusString());
+ setToolTip(CircuitListWidget::StatusColumn, stream.statusString());
}