summaryrefslogtreecommitdiff
path: root/gtk2_ardour/session_option_editor.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-01-09 15:47:19 +0000
committerRobin Gareus <robin@gareus.org>2013-01-09 15:47:19 +0000
commit5da4e2be2def7a60116c097154659aaf317e5c88 (patch)
treeca88a68bd597284232a278459929ed556eacb595 /gtk2_ardour/session_option_editor.cc
parentf402a63a0effb704ac25d0a2165c2f469755202b (diff)
remove timecode subframe configuration
There is no actual use-case to set it to anything else than 100. timecode subframes are only used for ruler marks and the snap to grid. libtimecode is still /aware/ of the subframe setting. git-svn-id: svn://localhost/ardour2/branches/3.0@13817 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/session_option_editor.cc')
-rw-r--r--gtk2_ardour/session_option_editor.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/gtk2_ardour/session_option_editor.cc b/gtk2_ardour/session_option_editor.cc
index 2b5c480503..45c0c803a3 100644
--- a/gtk2_ardour/session_option_editor.cc
+++ b/gtk2_ardour/session_option_editor.cc
@@ -60,18 +60,6 @@ SessionOptionEditor::SessionOptionEditor (Session* s)
add_option (_("Timecode"), smf);
- ComboOption<uint32_t>* spf = new ComboOption<uint32_t> (
- "subframes-per-frame",
- _("Subframes per frame"),
- sigc::mem_fun (*_session_config, &SessionConfiguration::get_subframes_per_frame),
- sigc::mem_fun (*_session_config, &SessionConfiguration::set_subframes_per_frame)
- );
-
- spf->add (80, _("80"));
- spf->add (100, _("100"));
-
- add_option (_("Timecode"), spf);
-
_vpu = new ComboOption<float> (
"video-pullup",
_("Pull-up / pull-down"),