From 076af87f91c704062a963dc6367e41c1bc6f83e9 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Mon, 31 Aug 2020 23:25:37 -0400 Subject: [PATCH] adjust log window title. --- Ample/Base.lproj/LogWindow.xib | 4 ++-- Ample/LogWindowController.m | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Ample/Base.lproj/LogWindow.xib b/Ample/Base.lproj/LogWindow.xib index 3b02d48..8e36756 100644 --- a/Ample/Base.lproj/LogWindow.xib +++ b/Ample/Base.lproj/LogWindow.xib @@ -14,7 +14,7 @@ - + @@ -36,7 +36,7 @@ - + diff --git a/Ample/LogWindowController.m b/Ample/LogWindowController.m index 1ae86b9..31e0f70 100644 --- a/Ample/LogWindowController.m +++ b/Ample/LogWindowController.m @@ -73,7 +73,7 @@ static NSMutableSet *LogWindows; return error; } _task = task; - NSString *title = [NSString stringWithFormat: @"Log Window - %u", [task processIdentifier]]; + NSString *title = [NSString stringWithFormat: @"Ample Log - %u", [task processIdentifier]]; [[self window] setTitle: title]; _handle = [pipe fileHandleForReading];