diff options
author | Saturneric <[email protected]> | 2021-12-16 20:05:31 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-12-16 20:43:19 +0000 |
commit | 1a51a285410b673bc020b5b9e4430a824a4addce (patch) | |
tree | b98edf5da49c25b49f9b9a3b863bc511def99e81 /src/main.cpp | |
parent | Fixed Issues on Windows & Reduce warning. (diff) | |
download | GpgFrontend-1a51a285410b673bc020b5b9e4430a824a4addce.tar.gz GpgFrontend-1a51a285410b673bc020b5b9e4430a824a4addce.zip |
Fixed bugs & Improve Speed.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index c03f072b..10d54958 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -76,7 +76,7 @@ int main(int argc, char* argv[]) { // unicode in source QTextCodec::setCodecForLocale(QTextCodec::codecForName("utf-8")); -#if defined(WINDOWS) +#if !defined(RELEASE) && defined(WINDOWS) // css boost::filesystem::path css_path = GpgFrontend::UI::GlobalSettingStation::GetInstance().GetResourceDir() / "css" / "default.qss"; QFile file(css_path.string().c_str()); |