Implement a basic <Text> component in Cocoa - it's cool because it really just uses the same Component lifecycle. Neat!
This commit is contained in:
parent
22e9628b27
commit
e17f05dec5
11 changed files with 205 additions and 42 deletions
|
|
@ -47,7 +47,7 @@ impl Window {
|
|||
|
||||
let title = NSString::alloc(nil).init_str(title);
|
||||
window.setTitle_(title);
|
||||
msg_send![window, setTitlebarAppearsTransparent:YES];
|
||||
//msg_send![window, setTitlebarAppearsTransparent:YES];
|
||||
msg_send![window, setTitleVisibility:1];
|
||||
|
||||
// This is very important! NSWindow is an old class and has some behavior that we need
|
||||
|
|
|
|||
Reference in a new issue