summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-03-31 23:43:13 +0200
committerCarl Hetherington <cth@carlh.net>2021-03-31 23:44:36 +0200
commit86646e17164f7e085bae1574ecda5784ce9a67ac (patch)
tree52258d140b48c1b769937c16f96ae9669d3a6f26 /src
parent9dce1d2646fa086af5006afe65723a50df583788 (diff)
Fix incorrectly-sized timeline toolbar icons on macOS (#1927).
Diffstat (limited to 'src')
-rw-r--r--src/wx/timeline_dialog.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wx/timeline_dialog.cc b/src/wx/timeline_dialog.cc
index 77acb9758..5be006b60 100644
--- a/src/wx/timeline_dialog.cc
+++ b/src/wx/timeline_dialog.cc
@@ -67,6 +67,7 @@ TimelineDialog::TimelineDialog (ContentPanel* cp, shared_ptr<Film> film, weak_pt
_toolbar = new wxToolBar (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTB_HORIZONTAL);
_toolbar->SetMargins (4, 4);
+ _toolbar->SetToolBitmapSize (wxSize(32, 32));
_toolbar->AddRadioTool ((int) Timeline::SELECT, _("Select"), select, wxNullBitmap, _("Select and move content"));
_toolbar->AddRadioTool ((int) Timeline::ZOOM, _("Zoom"), zoom, wxNullBitmap, _("Zoom in / out"));
_toolbar->AddTool ((int) Timeline::ZOOM_ALL, _("Zoom all"), zoom_all, _("Zoom out to whole film"));