← Back to team overview

cairo-dock-team team mailing list archive

[Bug 672452] [NEW] Incorrect down/up speeds in Netspeed

 

Public bug reported:

Recently, I began to use Netspeed applet on the dock and found that it
doesn't show the up/down speeds correctly.

I think the following two lines, near the end of "applet-netspeed.c",
are incorrect:

s_fValues[0] = fDownValue;
s_fValues[1] = fUpValue;

Changing them to:

s_fValues[1] = fDownValue;
s_fValues[0] = fUpValue;

fixed the issue for me.

BTW, 'Network-Monitor/src/applet-netspeed.c' has the same issue.

** Affects: cairo-dock-plug-ins
     Importance: Undecided
         Status: New

-- 
Incorrect down/up speeds in Netspeed
https://bugs.launchpad.net/bugs/672452
You received this bug notification because you are a member of Cairo-
Dock Team, which is subscribed to Cairo-Dock Plug-ins.

Status in Cairo-Dock : Plug-ins: New

Bug description:
Recently, I began to use Netspeed applet on the dock and found that it doesn't show the up/down speeds correctly.

I think the following two lines, near the end of "applet-netspeed.c", are incorrect:

s_fValues[0] = fDownValue;
s_fValues[1] = fUpValue;

Changing them to:

s_fValues[1] = fDownValue;
s_fValues[0] = fUpValue;

fixed the issue for me.

BTW, 'Network-Monitor/src/applet-netspeed.c' has the same issue.





Follow ups

References