mirror of https://github.com/odrling/Aegisub
Removed the "Help" button from Find/Replace dialog.
Originally committed to SVN as r225.
This commit is contained in:
parent
ea089faa37
commit
81e86727ff
|
@ -68,6 +68,7 @@ Please visit http://aegisub.net to download latest version
|
|||
- Dragging the timeline will now scroll audio display. (AMZ)
|
||||
- Fixed bug which caused extra newlines to be added at the end of file. (AMZ)
|
||||
- Added a horizontal scrollbar to shift times history. (AMZ)
|
||||
- Removed the "Help" button from Find/Replace dialog. (AMZ)
|
||||
|
||||
|
||||
= 1.09 beta - 2006.01.16 ===========================
|
||||
|
|
|
@ -48,6 +48,7 @@
|
|||
#include "frame_main.h"
|
||||
#include "main.h"
|
||||
|
||||
|
||||
///////////////
|
||||
// Constructor
|
||||
DialogSearchReplace::DialogSearchReplace (wxWindow *parent,bool _hasReplace,wxString name)
|
||||
|
@ -117,7 +118,7 @@ DialogSearchReplace::DialogSearchReplace (wxWindow *parent,bool _hasReplace,wxSt
|
|||
ButtonSizer->Add(new wxButton(this,BUTTON_REPLACE_ALL,_("Replace all")),0,wxEXPAND | wxBOTTOM,3);
|
||||
}
|
||||
ButtonSizer->Add(new wxButton(this,wxID_CLOSE),0,wxEXPAND | wxBOTTOM,20);
|
||||
ButtonSizer->Add(new wxButton(this,wxID_HELP),0,wxEXPAND | wxBOTTOM,0);
|
||||
//ButtonSizer->Add(new wxButton(this,wxID_HELP),0,wxEXPAND | wxBOTTOM,0);
|
||||
|
||||
// Main sizer
|
||||
wxSizer *MainSizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
|
|
Loading…
Reference in New Issue