summaryrefslogtreecommitdiff
path: root/src/wx/markers_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-10-10 00:22:22 +0200
committerCarl Hetherington <cth@carlh.net>2022-10-10 00:22:22 +0200
commita4d0c85dba60e2837814bd100547189b9a193fff (patch)
treec4c22c2d983f454e85b332816979df2e3851e1b7 /src/wx/markers_dialog.cc
parent74914f0da46845c0faa16117714dafbbacc6fc36 (diff)
Rename all_markers() and stop it being possible to set FFOC/LFOC.
Diffstat (limited to 'src/wx/markers_dialog.cc')
-rw-r--r--src/wx/markers_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/markers_dialog.cc b/src/wx/markers_dialog.cc
index 2e4dc42c5..c8561ad74 100644
--- a/src/wx/markers_dialog.cc
+++ b/src/wx/markers_dialog.cc
@@ -132,7 +132,7 @@ MarkersDialog::MarkersDialog (wxWindow* parent, weak_ptr<Film> film, weak_ptr<Fi
auto grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
int r = 0;
- for (auto const& marker: all_markers()) {
+ for (auto const& marker: all_editable_markers()) {
_markers.push_back (make_shared<Marker>(this, grid, r++, film, viewer, marker.first, marker.second));
}