From 4630e1edd64c586cf5dbdd612d32f925e383d0c7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Felix=20Paul=20K=C3=BChne?= Date: Tue, 20 Feb 2007 07:26:54 +0000 Subject: [PATCH] * 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 --- modules/gui/macosx/fspanel.m | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/gui/macosx/fspanel.m b/modules/gui/macosx/fspanel.m index 90a236abb9..701f7a7152 100644 --- a/modules/gui/macosx/fspanel.m +++ b/modules/gui/macosx/fspanel.m @@ -48,7 +48,7 @@ [win setBackgroundColor:[NSColor clearColor]]; /* let the window sit on top of everything else and start out completely transparent */ - [win setLevel:NSFloatingWindowLevel]; + [win setLevel:NSModalPanelWindowLevel]; [win setAlphaValue:0.0]; i_device = 0; @@ -217,7 +217,6 @@ { b_keptVisible = NO; b_fadeQueued = NO; - [[self fadeTimer] release]; [self setFadeTimer: NULL]; [self fadeIn]; return; -- 2.20.1