* src/nsterm.m (ns_draw_relief): Clear top and bottom line areas
first, if required.
[(raised_p ? lightCol : darkCol) set];
+ if (top_p)
+ {
+ NSRectFill (NSMakeRect (NSMinX (outer), NSMinY (outer),
+ NSWidth (outer), hthickness));
+ }
+
if (top_p || left_p)
{
NSBezierPath *p = [NSBezierPath bezierPath];
[p closePath];
[p fill];
}
+
+ if (bottom_p)
+ {
+ NSRectFill (NSMakeRect (NSMinX (outer), NSMaxY (inner),
+ NSWidth (outer), hthickness));
+ }
}