浏览代码

library: leave edit mode when switching to the sidebar (close #9704)

Felix Paul Kühne 11 年之前
父节点
当前提交
cdbf40e2df
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      AspenProject/VLCPlaylistViewController.m

+ 3 - 0
AspenProject/VLCPlaylistViewController.m

@@ -459,6 +459,9 @@
 - (IBAction)leftButtonAction:(id)sender
 {
     [[(VLCAppDelegate*)[UIApplication sharedApplication].delegate revealController] toggleSidebar:![(VLCAppDelegate*)[UIApplication sharedApplication].delegate revealController].sidebarShowing duration:kGHRevealSidebarDefaultAnimationDuration];
+
+    if (self.isEditing)
+        [self setEditing:NO animated:YES];
 }
 
 - (IBAction)backToAllItems:(id)sender