From f3c87bd59115b8d03837f98ee920cf0150a35c37 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 15 Mar 2024 20:41:15 +0100 Subject: [PATCH] Fix link icon width on macOS. --- src/wx/video_panel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wx/video_panel.cc b/src/wx/video_panel.cc index b27db2547..db42a0c28 100644 --- a/src/wx/video_panel.cc +++ b/src/wx/video_panel.cc @@ -108,7 +108,7 @@ VideoPanel::create () int const link_height = 32; #elif defined(DCPOMATIC_OSX) int const crop_width = 56; - int const link_width = 23; + int const link_width = 8 + 15 / dpi_scale_factor(this); int const link_height = 28; #else int const crop_width = 56; -- 2.30.2