Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
dd7b5f12
Commit
dd7b5f12
authored
Aug 15, 2011
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: fixed some ui bugs, which sneaked in recently
parent
734e6179
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
modules/gui/macosx/MainWindow.m
modules/gui/macosx/MainWindow.m
+4
-3
modules/video_output/macosx.m
modules/video_output/macosx.m
+1
-1
No files found.
modules/gui/macosx/MainWindow.m
View file @
dd7b5f12
...
...
@@ -424,7 +424,7 @@ static VLCMainWindow *_o_sharedInstance = nil;
else
{
[
o_playlist_table
setHidden
:
NO
];
[
o_video_view
setHidden
:
NO
];
[
o_video_view
setHidden
:
!
[[
VLCMain
sharedInstance
]
activeVideoPlayback
]
];
}
}
...
...
@@ -669,7 +669,7 @@ static VLCMainWindow *_o_sharedInstance = nil;
if
([
o_url
isFileURL
])
[
self
setRepresentedURL
:
o_url
];
else
[
self
setRepresentedURL
:
[
NSURL
URLWithString
:
@""
]
];
[
self
setRepresentedURL
:
nil
];
free
(
uri
);
if
([
aString
isEqualToString
:
@""
])
...
...
@@ -686,7 +686,7 @@ static VLCMainWindow *_o_sharedInstance = nil;
else
{
[
self
setTitle
:
_NS
(
"VLC media player"
)];
[
self
setRepresentedURL
:
[
NSURL
URLWithString
:
@""
]
];
[
self
setRepresentedURL
:
nil
];
}
[
o_pool
release
];
}
...
...
@@ -1150,6 +1150,7 @@ static VLCMainWindow *_o_sharedInstance = nil;
}
[
self
setAlphaValue
:
0
.
0
];
[
self
orderFront
:
self
];
[[
o_video_view
window
]
orderFront
:
self
];
[
o_fspanel
setNonActive
:
nil
];
...
...
modules/video_output/macosx.m
View file @
dd7b5f12
...
...
@@ -314,7 +314,7 @@ static int Control (vout_display_t *vd, int query, va_list ap)
}
case
VOUT_DISPLAY_CHANGE_DISPLAY_FILLED
:
{
[[
sys
->
glView
window
]
performSelectorOnMainThread
:
@selector
(
performZ
oom
:)
withObject
:
nil
waitUntilDone
:
NO
];
[[
sys
->
glView
window
]
performSelectorOnMainThread
:
@selector
(
z
oom
:)
withObject
:
nil
waitUntilDone
:
NO
];
return
VLC_SUCCESS
;
}
case
VOUT_DISPLAY_CHANGE_DISPLAY_SIZE
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment