Move credentials settings into certificate download dialogue (#1480).
[dcpomatic.git] / src / wx / playhead_to_timecode_dialog.cc
index f436df96e7f4fc405490e64df0a7f2a144374f14..c622111db52893f225b2fba264165a3e02455b8c 100644 (file)
 
 #include "playhead_to_timecode_dialog.h"
 
+using namespace dcpomatic;
+
 PlayheadToTimecodeDialog::PlayheadToTimecodeDialog (wxWindow* parent, int fps)
-       : TableDialog (parent, _("Move to timecode"), 2, 1, true)
+       : TableDialog (parent, _("Go to timecode"), 2, 1, true)
        , _fps (fps)
 {
        add (_("Go to"), true);
        _timecode = add (new Timecode<DCPTime> (this, false));
+       _timecode->set_focus ();
 
        layout ();
 }