X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fplayhead_to_timecode_dialog.cc;h=c622111db52893f225b2fba264165a3e02455b8c;hb=63c1bbc1ba177600523b2257223070cc2dbde7b7;hp=f436df96e7f4fc405490e64df0a7f2a144374f14;hpb=b8693a3bf32380733604aa6e80c9774de575ebe7;p=dcpomatic.git diff --git a/src/wx/playhead_to_timecode_dialog.cc b/src/wx/playhead_to_timecode_dialog.cc index f436df96e..c622111db 100644 --- a/src/wx/playhead_to_timecode_dialog.cc +++ b/src/wx/playhead_to_timecode_dialog.cc @@ -20,12 +20,15 @@ #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 (this, false)); + _timecode->set_focus (); layout (); }