Browse Subversion Repository
Contents of /trunk/Classes/MyClipView.m
Parent Directory
| Revision Log
Revision 148 -
( show annotations)
( download)
Sun Dec 17 06:18:27 2017 UTC
(6 years, 3 months ago)
by toshinagata1964
File size: 349 byte(s)
The background of the audio effect layout panel is now correctly drawn.
| 1 |
// |
| 2 |
// MyClipView.m |
| 3 |
// Alchemusica |
| 4 |
// |
| 5 |
// Created by Toshi Nagata on 2017/10/09. |
| 6 |
// |
| 7 |
// |
| 8 |
|
| 9 |
#import "MyClipView.h" |
| 10 |
|
| 11 |
@implementation MyClipView |
| 12 |
|
| 13 |
- (BOOL)isFlipped |
| 14 |
{ |
| 15 |
return YES; |
| 16 |
} |
| 17 |
|
| 18 |
/*- (void)drawRect:(NSRect)rect |
| 19 |
{ |
| 20 |
NSLog(@"rect=%@, bounds=%@", NSStringFromRect(rect), NSStringFromRect([self bounds])); |
| 21 |
NSDrawWindowBackground(rect); |
| 22 |
} |
| 23 |
*/ |
| 24 |
@end |
|