diff options
author | George Hazan <george.hazan@gmail.com> | 2024-03-31 13:45:04 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-03-31 13:45:04 +0300 |
commit | b8f2e677b094dfe4e09f7971ef01316f6b3c21a7 (patch) | |
tree | 24f7351933a6588867e80ca2780821c876c7a588 /plugins/NewStory/src/main.cpp | |
parent | f9bd37d742a2f8851d4afc98eb207b9ee26fa42b (diff) |
fixes #4320 (NewStory: problem with small images' preview)
Diffstat (limited to 'plugins/NewStory/src/main.cpp')
-rw-r--r-- | plugins/NewStory/src/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/NewStory/src/main.cpp b/plugins/NewStory/src/main.cpp index 6917eb31ff..a74019cffb 100644 --- a/plugins/NewStory/src/main.cpp +++ b/plugins/NewStory/src/main.cpp @@ -18,6 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "stdafx.h"
+#pragma comment(lib, "gdiplus.lib")
+
CMPlugin g_plugin;
CMOption<bool> g_bOptGrouping(MODULENAME, "MessageGrouping", false);
|