Make video zoom dropdown on the toolbar and the subs edit area Commit button both use default sizes.
Originally committed to SVN as r1594.
This commit is contained in:
parent
5a713aa717
commit
4bb88670bb
2 changed files with 2 additions and 2 deletions
|
@ -211,7 +211,7 @@ void FrameMain::InitToolbar () {
|
||||||
toAdd += _T("%");
|
toAdd += _T("%");
|
||||||
choices.Add(toAdd);
|
choices.Add(toAdd);
|
||||||
}
|
}
|
||||||
ZoomBox = new wxComboBox(Toolbar,Toolbar_Zoom_Dropdown,_T("75%"),wxDefaultPosition,wxSize(100,20),choices,wxCB_READONLY);
|
ZoomBox = new wxComboBox(Toolbar,Toolbar_Zoom_Dropdown,_T("75%"),wxDefaultPosition,wxDefaultSize,choices,wxCB_READONLY);
|
||||||
Toolbar->AddControl(ZoomBox);
|
Toolbar->AddControl(ZoomBox);
|
||||||
Toolbar->AddSeparator();
|
Toolbar->AddSeparator();
|
||||||
|
|
||||||
|
|
|
@ -132,7 +132,7 @@ SubsEditBox::SubsEditBox (wxWindow *parent,SubtitlesGrid *gridp) : wxPanel(paren
|
||||||
Color3->SetToolTip(_("Outline color"));
|
Color3->SetToolTip(_("Outline color"));
|
||||||
Color4 = new wxBitmapButton(this,BUTTON_COLOR4,wxBITMAP(button_color_four),wxDefaultPosition,wxSize(30,20));
|
Color4 = new wxBitmapButton(this,BUTTON_COLOR4,wxBITMAP(button_color_four),wxDefaultPosition,wxSize(30,20));
|
||||||
Color4->SetToolTip(_("Shadow color"));
|
Color4->SetToolTip(_("Shadow color"));
|
||||||
CommitButton = new wxButton(this,BUTTON_COMMIT,_("Commit"),wxDefaultPosition,wxSize(-1,20));
|
CommitButton = new wxButton(this,BUTTON_COMMIT,_("Commit"),wxDefaultPosition,wxDefaultSize);
|
||||||
ToolTipManager::Bind(CommitButton,_("Commits the text (Enter). Hold Ctrl to stay in line (%KEY%)."),_T("Edit Box Commit"));
|
ToolTipManager::Bind(CommitButton,_("Commits the text (Enter). Hold Ctrl to stay in line (%KEY%)."),_T("Edit Box Commit"));
|
||||||
ByTime = new wxRadioButton(this,RADIO_TIME_BY_TIME,_("Time"),wxDefaultPosition,wxDefaultSize,wxRB_GROUP);
|
ByTime = new wxRadioButton(this,RADIO_TIME_BY_TIME,_("Time"),wxDefaultPosition,wxDefaultSize,wxRB_GROUP);
|
||||||
ByTime->SetToolTip(_("Time by h:mm:ss.cs"));
|
ByTime->SetToolTip(_("Time by h:mm:ss.cs"));
|
||||||
|
|
Loading…
Reference in a new issue