mirror of https://github.com/odrling/Aegisub
Set the default string encoding to UTF-8
This commit is contained in:
parent
86aca22502
commit
9f7e865196
|
@ -67,6 +67,7 @@
|
|||
|
||||
#include <boost/filesystem/fstream.hpp>
|
||||
#include <boost/format.hpp>
|
||||
#include <boost/locale.hpp>
|
||||
#include <sstream>
|
||||
|
||||
#include <wx/config.h>
|
||||
|
@ -112,6 +113,10 @@ bool AegisubApp::OnInit() {
|
|||
SetAppName("aegisub");
|
||||
#endif
|
||||
|
||||
// Set the global locale to the utf-8 version of the current locale
|
||||
std::locale::global(boost::locale::generator().generate(""));
|
||||
boost::filesystem::path::imbue(std::locale());
|
||||
|
||||
// Pointless `this` capture required due to http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51494
|
||||
agi::dispatch::Init([this](agi::dispatch::Thunk f) {
|
||||
wxThreadEvent *evt = new wxThreadEvent(EVT_CALL_THUNK);
|
||||
|
|
Loading…
Reference in New Issue