diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-11-01 09:26:56 +0100 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-11-01 12:36:53 +0100 |
commit | 27dcf3280278c767b1c4b2c861f59e0d3a69f0cc (patch) | |
tree | cb9723eafefc2e10609d09a8e233037e7169cf22 /skinnopacity.c | |
parent | 9f7a718a121ce1b69fdb094d1729d2ddad7895e8 (diff) | |
download | skin-nopacity-27dcf3280278c767b1c4b2c861f59e0d3a69f0cc.tar.gz skin-nopacity-27dcf3280278c767b1c4b2c861f59e0d3a69f0cc.tar.bz2 |
Version 1.1.41.1.4
Diffstat (limited to 'skinnopacity.c')
-rw-r--r-- | skinnopacity.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/skinnopacity.c b/skinnopacity.c index 9ed34af..1492be7 100644 --- a/skinnopacity.c +++ b/skinnopacity.c @@ -19,7 +19,7 @@ #endif -static const char *VERSION = "1.1.3"; +static const char *VERSION = "1.1.4"; static const char *DESCRIPTION = "'nOpacity' Skin"; static const char *MAINMENUENTRY = "nOpacity"; @@ -95,6 +95,10 @@ bool cPluginNopacity::ProcessArgs(int argc, char *argv[]) { return true; } +__attribute__((constructor)) static void init(void) { + Magick::InitializeMagick(NULL); +} + bool cPluginNopacity::Initialize(void) { return true; } |