Draw 0-width radio events as one pixels wide to show all transmissions
This commit is contained in:
parent
0f57afa2b3
commit
53a0c0a300
1 changed files with 8 additions and 7 deletions
|
@ -26,7 +26,7 @@
|
||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $Id: TimeLine.java,v 1.2 2009/05/04 16:03:35 fros4943 Exp $
|
* $Id: TimeLine.java,v 1.3 2009/05/06 15:00:06 adamdunkels Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package se.sics.cooja.plugins;
|
package se.sics.cooja.plugins;
|
||||||
|
@ -942,8 +942,9 @@ public class TimeLine extends VisPlugin {
|
||||||
|
|
||||||
/* Ignore painting events with zero width */
|
/* Ignore painting events with zero width */
|
||||||
if (w == 0) {
|
if (w == 0) {
|
||||||
ev = ev.next;
|
/* ev = ev.next;
|
||||||
continue;
|
continue;*/
|
||||||
|
w = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ev.state == RadioEvent.TRANSMISSION_STARTED) {
|
if (ev.state == RadioEvent.TRANSMISSION_STARTED) {
|
||||||
|
@ -1000,10 +1001,10 @@ public class TimeLine extends VisPlugin {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Ignore painting events with zero width */
|
/* Ignore painting events with zero width */
|
||||||
if (w == 0) {
|
if (w == 0) {
|
||||||
ev = ev.next;
|
ev = ev.next;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
g.setColor(Color.GRAY);
|
g.setColor(Color.GRAY);
|
||||||
g.fillRect(
|
g.fillRect(
|
||||||
|
|
Loading…
Reference in a new issue