diff --git a/core/changelog.txt b/core/changelog.txt index 7613529b0..9979b167b 100644 --- a/core/changelog.txt +++ b/core/changelog.txt @@ -67,6 +67,7 @@ Please visit http://aegisub.net to download latest version - Timeline is now drawn below audio display. (AMZ) - 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) = 1.09 beta - 2006.01.16 =========================== diff --git a/core/dialog_shift_times.cpp b/core/dialog_shift_times.cpp index debd56c72..7b9b341c9 100644 --- a/core/dialog_shift_times.cpp +++ b/core/dialog_shift_times.cpp @@ -104,7 +104,7 @@ DialogShiftTimes::DialogShiftTimes (wxWindow *parent,SubtitlesGrid *_grid,VideoD // History wxSizer *HistorySizer = new wxStaticBoxSizer(wxVERTICAL,this,_("History")); - History = new wxListBox(this,-1,wxDefaultPosition,wxSize(350,100), 0, NULL, 0); + History = new wxListBox(this,-1,wxDefaultPosition,wxSize(350,100), 0, NULL, wxLB_HSCROLL); HistorySizer->Add(History,1,wxEXPAND,0); // Buttons