diff --git a/Frameworks/HTMLOutputWindow/src/HTMLOutputWindow.h b/Frameworks/HTMLOutputWindow/src/HTMLOutputWindow.h
index 21954d06..88b4282c 100644
--- a/Frameworks/HTMLOutputWindow/src/HTMLOutputWindow.h
+++ b/Frameworks/HTMLOutputWindow/src/HTMLOutputWindow.h
@@ -3,6 +3,7 @@
PUBLIC @interface HTMLOutputWindowController : NSObject
@property (nonatomic) NSWindow* window;
+@property (nonatomic) OakHTMLOutputView* htmlOutputView;
@property (nonatomic) command::runner_ptr commandRunner;
@property (nonatomic, readonly) BOOL running;
@property (nonatomic, readonly) BOOL needsNewWebView;
diff --git a/Frameworks/HTMLOutputWindow/src/HTMLOutputWindow.mm b/Frameworks/HTMLOutputWindow/src/HTMLOutputWindow.mm
index 6afa643b..dcd22bae 100644
--- a/Frameworks/HTMLOutputWindow/src/HTMLOutputWindow.mm
+++ b/Frameworks/HTMLOutputWindow/src/HTMLOutputWindow.mm
@@ -12,7 +12,6 @@ OAK_DEBUG_VAR(HTMLOutputWindow);
{
OBJC_WATCH_LEAKS(HTMLOutputWindowController);
}
-@property (nonatomic) OakHTMLOutputView* htmlOutputView;
@property (nonatomic) HTMLOutputWindowController* retainedSelf;
@end