From faac82287f43c57775b859f1e180e8b31e71aa88 Mon Sep 17 00:00:00 2001 From: cacaodev Date: Sat, 7 Feb 2009 17:12:44 +0100 Subject: [PATCH] Fixed bug in previous commit of setToolTip: --- AppKit/CPControl.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPControl.j b/AppKit/CPControl.j index adbc5c5d2f..e08fbed6bd 100644 --- a/AppKit/CPControl.j +++ b/AppKit/CPControl.j @@ -328,7 +328,7 @@ var CPControlBlackColor = [CPColor blackColor]; _toolTip = aToolTip; #if PLATFORM(DOM) - _DOMElement.title = [aToolTip cssString]; + _DOMElement.title = aToolTip; #endif }