forked from mia/Aegisub
Added a horizontal scrollbar to shift times history.
Originally committed to SVN as r222.
This commit is contained in:
parent
8f8952293b
commit
bb037fc271
2 changed files with 2 additions and 1 deletions
|
@ -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 ===========================
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue