Minor changes

This commit is contained in:
Gregory John Casamento 2021-05-06 23:46:06 -04:00
parent a7fb78ecd0
commit ee2bd354da

View file

@ -328,12 +328,19 @@
[o setLabel: (id)newTag];
}
[classManager addAction: [o label]
forObject: src];
// If the src is the first responder, use nil since this
// tells AppKit to use the First Responder chain.
//if (src == [doc firstResponder])
// {
// src = nil;
// }
// For control connectors these roles are reversed...
[o setSource: dest];
[o setDestination: src];
[classManager addAction: [o label]
forObject: src];
}
else if ([o isKindOfClass: [NSNibOutletConnector class]])
{