mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-17 17:11:19 +00:00
Fixed default width of progress bar in OS X startup window
If window was resized before progress bar appears it will have hardcoded and so incorrect width
This commit is contained in:
parent
64f80456ad
commit
067b421f39
1 changed files with 6 additions and 1 deletions
|
@ -377,7 +377,12 @@ void FConsoleWindow::SetProgressBar(const bool visible)
|
||||||
{
|
{
|
||||||
ExpandTextView(-PROGRESS_BAR_HEIGHT);
|
ExpandTextView(-PROGRESS_BAR_HEIGHT);
|
||||||
|
|
||||||
m_progressBar = [[NSProgressIndicator alloc] initWithFrame:NSMakeRect(2.0f, 0.0f, 508.0f, 16.0f)];
|
static const CGFloat PROGRESS_BAR_X = 2.0f;
|
||||||
|
const NSRect PROGRESS_BAR_RECT = NSMakeRect(
|
||||||
|
PROGRESS_BAR_X, 0.0f,
|
||||||
|
[m_window frame].size.width - PROGRESS_BAR_X * 2, 16.0f);
|
||||||
|
|
||||||
|
m_progressBar = [[NSProgressIndicator alloc] initWithFrame:PROGRESS_BAR_RECT];
|
||||||
[m_progressBar setIndeterminate:NO];
|
[m_progressBar setIndeterminate:NO];
|
||||||
[m_progressBar setAutoresizingMask:NSViewWidthSizable];
|
[m_progressBar setAutoresizingMask:NSViewWidthSizable];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue