Hid resize indicator on OS X startup window

The resize indicator overlapped with progress bar and Quit/Cancel button on 10.6 and older versions
OS X 10.7 and newer don't have this indicator at all
This commit is contained in:
alexey.lysiuk 2015-12-30 16:05:16 +02:00
parent 3466a8c7a9
commit 63993dee96

View file

@ -108,6 +108,7 @@ FConsoleWindow::FConsoleWindow()
backing:NSBackingStoreBuffered
defer:NO];
[m_window setMinSize:[m_window frame].size];
[m_window setShowsResizeIndicator:NO];
[m_window setTitle:title];
[m_window center];
[m_window exitAppOnClose];