Commit 4630e1ed authored by Felix Paul Kühne's avatar Felix Paul Kühne

* don't double free an object! Thanks to nivix for pointing me to the right...

* don't double free an object! Thanks to nivix for pointing me to the right direction and keeping to bug me about this. Fixes #978
parent b2ef668f
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
[win setBackgroundColor:[NSColor clearColor]]; [win setBackgroundColor:[NSColor clearColor]];
/* let the window sit on top of everything else and start out completely transparent */ /* let the window sit on top of everything else and start out completely transparent */
[win setLevel:NSFloatingWindowLevel]; [win setLevel:NSModalPanelWindowLevel];
[win setAlphaValue:0.0]; [win setAlphaValue:0.0];
i_device = 0; i_device = 0;
...@@ -217,7 +217,6 @@ ...@@ -217,7 +217,6 @@
{ {
b_keptVisible = NO; b_keptVisible = NO;
b_fadeQueued = NO; b_fadeQueued = NO;
[[self fadeTimer] release];
[self setFadeTimer: NULL]; [self setFadeTimer: NULL];
[self fadeIn]; [self fadeIn];
return; return;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment