From 4353c2f21697463e1dd10c0feed1bdce79931266 Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Mon, 30 Sep 2024 22:48:28 +0800 Subject: [PATCH] macosx: Fix sidebar root view Nib name string in sidebar root view controller Signed-off-by: Claudio Cambra --- .../macosx/library/VLCLibraryWindowSidebarRootViewController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gui/macosx/library/VLCLibraryWindowSidebarRootViewController.m b/modules/gui/macosx/library/VLCLibraryWindowSidebarRootViewController.m index 5dc125cbbc67..166027cbba52 100644 --- a/modules/gui/macosx/library/VLCLibraryWindowSidebarRootViewController.m +++ b/modules/gui/macosx/library/VLCLibraryWindowSidebarRootViewController.m @@ -42,7 +42,7 @@ @implementation VLCLibraryWindowSidebarRootViewController - (instancetype)initWithLibraryWindow:(VLCLibraryWindow *)libraryWindow { - self = [super initWithNibName:@"VLCLibraryWindowSidebarView" bundle:nil]; + self = [super initWithNibName:@"VLCLibraryWindowSidebarRootView" bundle:nil]; if (self) { _libraryWindow = libraryWindow; }