Don't set placeholder text on hex text field

This commit is contained in:
Sami Samhuri
2010-09-10 10:02:14 +02:00
committed by Klaas Pieter Annema
parent ba9df402b0
commit d52cbb7077
+1 -2
View File
@@ -274,8 +274,7 @@
[_hexLabel setTextColor:[CPColor blackColor]];
//hex input box
_hexValue = [CPTextField textFieldWithStringValue: @"" placeholder: @"" width: 80];
[_hexValue setFrameOrigin: CGPointMake(32, 225)];
_hexValue = [[CPTextField alloc] initWithFrame: CGRectMake(32, 225, 80, 29)];
[_hexValue setEditable: YES];
[_hexValue setBezeled: YES];
[_hexValue setDelegate: self];