From beec19ceffdf9ba848f2ee71bbadd857faeb4ee7 Mon Sep 17 00:00:00 2001 From: Serhiy Mytrovtsiy Date: Thu, 13 Aug 2020 16:38:31 +0200 Subject: [PATCH] - rename History to Usage history --- Modules/CPU/popup.swift | 2 +- Modules/Memory/popup.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/CPU/popup.swift b/Modules/CPU/popup.swift index 5a74e21f..96aefa78 100644 --- a/Modules/CPU/popup.swift +++ b/Modules/CPU/popup.swift @@ -82,7 +82,7 @@ internal class Popup: NSView { private func initChart() { let y: CGFloat = self.frame.height - self.dashboardHeight - Constants.Popup.separatorHeight - let separator = SeparatorView("History", origin: NSPoint(x: 0, y: y), width: self.frame.width) + let separator = SeparatorView("Usage history", origin: NSPoint(x: 0, y: y), width: self.frame.width) self.addSubview(separator) let view: NSView = NSView(frame: NSRect(x: 0, y: y - self.chartHeight, width: self.frame.width, height: self.chartHeight)) diff --git a/Modules/Memory/popup.swift b/Modules/Memory/popup.swift index ccb809d9..afc334e6 100644 --- a/Modules/Memory/popup.swift +++ b/Modules/Memory/popup.swift @@ -71,7 +71,7 @@ internal class Popup: NSView { private func initChart() { let y: CGFloat = self.frame.height - self.dashboardHeight - Constants.Popup.separatorHeight - let separator = SeparatorView("History", origin: NSPoint(x: 0, y: y), width: self.frame.width) + let separator = SeparatorView("Usage history", origin: NSPoint(x: 0, y: y), width: self.frame.width) self.addSubview(separator) let view: NSView = NSView(frame: NSRect(x: 0, y: y - self.chartHeight, width: self.frame.width, height: self.chartHeight))