From 151af674ef7762dac3261a616c77cd39275f3773 Mon Sep 17 00:00:00 2001 From: Andrew Robinson Date: Sun, 13 Oct 2019 18:47:22 -0700 Subject: [PATCH] Remove extra new line --- Reddit-macOS/Views/PostList.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/Reddit-macOS/Views/PostList.swift b/Reddit-macOS/Views/PostList.swift index d30cf1b..c3d84dc 100644 --- a/Reddit-macOS/Views/PostList.swift +++ b/Reddit-macOS/Views/PostList.swift @@ -27,7 +27,6 @@ struct PostList: View { PostView(post: post) .tag(post.id) .padding(EdgeInsets(top: 5, leading: 0, bottom: 5, trailing: 0)) - /// Double-click to open a new window for the `PostDetailView` .onTapGesture(count: 2) { let controller = DetailWindowController(rootView: PostDetailView(post: post))