diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-08-13 16:54:56 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-08-14 00:03:40 +0100 |
| commit | f30ad4dec0a3fa5f1770fba93106a3e8910d66ba (patch) | |
| tree | 6f911acd99931fc52f15f68dc5a0df099efd5d43 | |
| parent | ca9aea126c94736435699cb1e0a3347f4a8311b4 (diff) | |
Use a radio item rather than a check item when selecting CPL in the content menu.
| -rw-r--r-- | src/wx/content_menu.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/content_menu.cc b/src/wx/content_menu.cc index 36187e00f..6a5ca8be4 100644 --- a/src/wx/content_menu.cc +++ b/src/wx/content_menu.cc @@ -132,7 +132,7 @@ ContentMenu::popup (weak_ptr<Film> film, ContentList c, TimelineContentViewList /* We can't have 0 as a menu item ID on OS X */ int id = 1; BOOST_FOREACH (shared_ptr<dcp::CPL> i, cpls) { - wxMenuItem* item = _cpl_menu->AppendCheckItem ( + wxMenuItem* item = _cpl_menu->AppendRadioItem ( id++, wxString::Format ( "%s (%s)", |
