mirror of https://github.com/odrling/Aegisub
Update #977, this seems to fix the bug (no more crashing, it was some uinitialised iterators) but I'm not sure if the fix should be merged to trunk too.
Originally committed to SVN as r3733.
This commit is contained in:
parent
a0bfd9ff7c
commit
4be422335a
|
@ -700,6 +700,8 @@ DialogKanjiTimer::DialogKanjiTimer(wxWindow *parent, SubtitlesGrid *_grid)
|
||||||
// Variables
|
// Variables
|
||||||
subs = AssFile::top;
|
subs = AssFile::top;
|
||||||
grid = _grid;
|
grid = _grid;
|
||||||
|
currentSourceLine = subs->Line.begin();
|
||||||
|
currentDestinationLine = subs->Line.begin();
|
||||||
|
|
||||||
//Sizers
|
//Sizers
|
||||||
wxSizer *DisplayBoxSizer = new wxStaticBoxSizer(wxVERTICAL,this,_("Text"));
|
wxSizer *DisplayBoxSizer = new wxStaticBoxSizer(wxVERTICAL,this,_("Text"));
|
||||||
|
@ -711,7 +713,6 @@ DialogKanjiTimer::DialogKanjiTimer(wxWindow *parent, SubtitlesGrid *_grid)
|
||||||
wxSizer *BottomShelfSizer = new wxBoxSizer(wxHORIZONTAL);
|
wxSizer *BottomShelfSizer = new wxBoxSizer(wxHORIZONTAL);
|
||||||
wxSizer *BottomLeftStackSizer = new wxBoxSizer(wxVERTICAL);
|
wxSizer *BottomLeftStackSizer = new wxBoxSizer(wxVERTICAL);
|
||||||
|
|
||||||
|
|
||||||
display = new KaraokeLineMatchDisplay(this);
|
display = new KaraokeLineMatchDisplay(this);
|
||||||
|
|
||||||
//Checkbox
|
//Checkbox
|
||||||
|
|
Loading…
Reference in New Issue