Move two accelerators

SubsEditBox: move accelerator so it doesn't conflict with "Timing" menu.
Dummy video dialog: move accelerator so it doesn't conflict with the
Cancel button.

Originally committed to SVN as r6800.
This commit is contained in:
cantabile 2012-05-15 14:06:55 +00:00 committed by Thomas Goyne
parent 597b92bb7f
commit 848ebf4d2d
2 changed files with 2 additions and 2 deletions

View File

@ -168,7 +168,7 @@ DialogDummyVideo::DialogDummyVideo(wxWindow *parent)
width = new wxTextCtrl(this, -1);
height = new wxTextCtrl(this, -1);
colour = new ColourButton(this, -1, wxSize(30, 17), lagi_wxColour(OPT_GET("Colour/Video Dummy/Last Colour")->GetColour()));
pattern = new wxCheckBox(this, -1, _("&Checkerboard pattern"));
pattern = new wxCheckBox(this, -1, _("Checkerboard &pattern"));
fps = new wxTextCtrl(this, Dummy_Video_FPS, wxString::Format("%f", OPT_GET("Video/Dummy/FPS")->GetDouble()));
length = new wxSpinCtrl(this, Dummy_Video_Length, "", wxDefaultPosition, wxDefaultSize, 4096|wxALIGN_LEFT);
length_display = new wxStaticText(this, -1, "");

View File

@ -214,7 +214,7 @@ SubsEditBox::SubsEditBox(wxWindow *parent, agi::Context *context)
MakeButton(GETIMAGE(button_audio_commit_16), _("Commits the text (Enter)"), bind(&cmd::call, "grid/line/next/create", c));
MiddleBotSizer->AddSpacer(10);
ByTime = MakeRadio(_("&Time"), true, _("Time by h:mm:ss.cs"));
ByTime = MakeRadio(_("T&ime"), true, _("Time by h:mm:ss.cs"));
ByFrame = MakeRadio(_("F&rame"), false, _("Time by frame number"));
ByFrame->Enable(false);