mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
consistency changes
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@877 21ef857c-d57f-4fe0-8362-d861dc6d29cd
This commit is contained in:
@@ -83,7 +83,7 @@ namespace ProcessHacker
|
||||
plotterCPUUsage.GetToolTip = i =>
|
||||
((plotterCPUUsage.Data1[i] + plotterCPUUsage.Data2[i]) * 100).ToString("N2") +
|
||||
"% (K: " + (plotterCPUUsage.Data1[i] * 100).ToString("N2") +
|
||||
"%, U: " + (plotterCPUUsage.Data2[i] * 100).ToString("N2") + ")";
|
||||
"%, U: " + (plotterCPUUsage.Data2[i] * 100).ToString("N2") + "%)";
|
||||
plotterMemory.LongData1 = _processItem.LongHistoryManager[ProcessStats.PrivateMemory];
|
||||
plotterMemory.LongData2 = _processItem.LongHistoryManager[ProcessStats.WorkingSet];
|
||||
plotterMemory.GetToolTip = i =>
|
||||
|
||||
@@ -53,8 +53,8 @@ namespace ProcessHacker
|
||||
plotterIO.LongData2 = Program.HackerWindow.ProcessProvider.LongHistory[SystemStats.IoWrite];
|
||||
plotterIO.GetToolTip = i =>
|
||||
Program.HackerWindow.ProcessProvider.MostIoHistory[i] + "\n" +
|
||||
"R+O: " + Misc.GetNiceSizeName(plotterIO.LongData1[i]) +
|
||||
", W: " + Misc.GetNiceSizeName(plotterIO.LongData2[i]);
|
||||
"R+O: " + Misc.GetNiceSizeName(plotterIO.LongData1[i]) + "\n" +
|
||||
"W: " + Misc.GetNiceSizeName(plotterIO.LongData2[i]);
|
||||
plotterMemory.LongData1 = Program.HackerWindow.ProcessProvider.LongHistory[SystemStats.Commit];
|
||||
plotterMemory.LongData2 = Program.HackerWindow.ProcessProvider.LongHistory[SystemStats.PhysicalMemory];
|
||||
plotterMemory.GetToolTip = i =>
|
||||
|
||||
Reference in New Issue
Block a user