forked from mia/Aegisub
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:
parent
597b92bb7f
commit
848ebf4d2d
2 changed files with 2 additions and 2 deletions
|
@ -168,7 +168,7 @@ DialogDummyVideo::DialogDummyVideo(wxWindow *parent)
|
||||||
width = new wxTextCtrl(this, -1);
|
width = new wxTextCtrl(this, -1);
|
||||||
height = 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()));
|
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()));
|
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 = new wxSpinCtrl(this, Dummy_Video_Length, "", wxDefaultPosition, wxDefaultSize, 4096|wxALIGN_LEFT);
|
||||||
length_display = new wxStaticText(this, -1, "");
|
length_display = new wxStaticText(this, -1, "");
|
||||||
|
|
|
@ -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));
|
MakeButton(GETIMAGE(button_audio_commit_16), _("Commits the text (Enter)"), bind(&cmd::call, "grid/line/next/create", c));
|
||||||
MiddleBotSizer->AddSpacer(10);
|
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 = MakeRadio(_("F&rame"), false, _("Time by frame number"));
|
||||||
ByFrame->Enable(false);
|
ByFrame->Enable(false);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue