diff --git a/core/changelog.txt b/core/changelog.txt index 9979b167b..3fd2872af 100644 --- a/core/changelog.txt +++ b/core/changelog.txt @@ -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 =========================== diff --git a/core/dialog_search_replace.cpp b/core/dialog_search_replace.cpp index b88988135..3239cf1d9 100644 --- a/core/dialog_search_replace.cpp +++ b/core/dialog_search_replace.cpp @@ -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);