forked from mia/Aegisub
Flush the clipboard on exit
Apparently flushing immediately after setting the clipboard sometimes doesn't work.
This commit is contained in:
parent
e37e4b8231
commit
6bf986a63f
1 changed files with 5 additions and 0 deletions
|
@ -285,6 +285,11 @@ int AegisubApp::OnExit() {
|
||||||
if (frame)
|
if (frame)
|
||||||
delete frame;
|
delete frame;
|
||||||
|
|
||||||
|
if (wxTheClipboard->Open()) {
|
||||||
|
wxTheClipboard->Flush();
|
||||||
|
wxTheClipboard->Close();
|
||||||
|
}
|
||||||
|
|
||||||
SubtitleFormat::DestroyFormats();
|
SubtitleFormat::DestroyFormats();
|
||||||
delete config::opt;
|
delete config::opt;
|
||||||
delete config::mru;
|
delete config::mru;
|
||||||
|
|
Loading…
Reference in a new issue