We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b547c26 + 0812581 commit bab7599Copy full SHA for bab7599
PBGitWindowController.m
@@ -42,6 +42,16 @@ - (id)initWithRepository:(PBGitRepository*)theRepository displayDefault:(BOOL)di
42
return self;
43
}
44
45
+- (void)synchronizeWindowTitleWithDocumentName
46
+{
47
+ [super synchronizeWindowTitleWithDocumentName];
48
+
49
+ // Point window proxy icon at project directory, not internal .git dir
50
+ NSString *workingDirectory = [self.repository workingDirectory];
51
+ [[self window] setRepresentedURL:[NSURL fileURLWithPath:workingDirectory
52
+ isDirectory:YES]];
53
+}
54
55
- (void)windowWillClose:(NSNotification *)notification
56
{
57
//DLog(@"Window will close!");
0 commit comments