mirror of https://github.com/odrling/Aegisub
Copy the source line's group in AssDialogue's copy constructor as copying wxStrings is far faster than constructing new ones
Originally committed to SVN as r6409.
This commit is contained in:
parent
a7d54f3d69
commit
3af57cdbcd
|
@ -60,7 +60,7 @@ AssDialogue::AssDialogue()
|
||||||
}
|
}
|
||||||
|
|
||||||
AssDialogue::AssDialogue(AssDialogue const& that)
|
AssDialogue::AssDialogue(AssDialogue const& that)
|
||||||
: AssEntry(wxString(), "[Events]")
|
: AssEntry(wxString(), that.group)
|
||||||
, Comment(that.Comment)
|
, Comment(that.Comment)
|
||||||
, Layer(that.Layer)
|
, Layer(that.Layer)
|
||||||
, Start(that.Start)
|
, Start(that.Start)
|
||||||
|
|
Loading…
Reference in New Issue