# `GlyphsReporter needsExtraMainOutlineDrawingForInactiveLayer:`

*Instance Method*

Implement this and return NO if you did all drawing yourself and don’t need the regular outline drawn on top of it.

## Declaration

```swift
optional func needsExtraMainOutlineDrawing(forInactiveLayer layer: GSLayer!) -> Bool
```

```objc
- (BOOL) needsExtraMainOutlineDrawingForInactiveLayer:(GSLayer *) layer;
```

```python
needsExtraMainOutlineDrawingForInactiveLayer_(layer: GSLayer) -> bool
```

## Parameters

- `layer` — The layer

## Return Value

Return NO if the normal outline drawing should be suppressed.

## Discussion

This is for inactive layers

