mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-05 10:23:39 +00:00
Don't set placeholder text on hex text field
This commit is contained in:
committed by
Klaas Pieter Annema
parent
ba9df402b0
commit
d52cbb7077
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user