diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-03-15 20:41:15 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-03-16 00:07:09 +0100 |
| commit | f3c87bd59115b8d03837f98ee920cf0150a35c37 (patch) | |
| tree | 8ae47b73b40797e1fccc8cd7d503eae46e28ef0c | |
| parent | 11f046d81b9011a19d3f6299996f93782e789cb4 (diff) | |
Fix link icon width on macOS.
| -rw-r--r-- | src/wx/video_panel.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
