[vlc-commits] macosx: activate playlist when playback finishes (close #6693)
David Fuhrmann
git at videolan.org
Sat Apr 27 10:50:34 CEST 2013
vlc/vlc-2.0 | branch: master | David Fuhrmann <david.fuhrmann at googlemail.com> | Sat Apr 27 10:49:19 2013 +0200| [42eaf8ca95b60ffe2260033c780abbb6c5522862] | committer: David Fuhrmann
macosx: activate playlist when playback finishes (close #6693)
backport of (334e48a3e85e6127be03b2293b9c4233c73b1d4c)
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=42eaf8ca95b60ffe2260033c780abbb6c5522862
---
modules/gui/macosx/MainWindow.m | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/macosx/MainWindow.m b/modules/gui/macosx/MainWindow.m
index abd5fc7..8f01969 100644
--- a/modules/gui/macosx/MainWindow.m
+++ b/modules/gui/macosx/MainWindow.m
@@ -773,7 +773,7 @@ static VLCMainWindow *_o_sharedInstance = nil;
[o_video_view setHidden: YES];
[o_split_view setHidden: NO];
- [self makeFirstResponder: nil];
+ [self makeFirstResponder: o_playlist_table];
}
@@ -1648,7 +1648,7 @@ static VLCMainWindow *_o_sharedInstance = nil;
}
else
{
- [self makeFirstResponder: nil];
+ [self makeFirstResponder: o_playlist_table];
[o_detached_video_window orderOut: nil];
if( [self level] != NSNormalWindowLevel )
More information about the vlc-commits
mailing list