mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-14 00:50:38 +00:00
19 lines
312 B
Mathematica
19 lines
312 B
Mathematica
|
//
|
||
|
// UpdateButton.m
|
||
|
// QuakeSpasm
|
||
|
//
|
||
|
// Created by Kristian Duske on 01.08.10.
|
||
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "UpdateButton.h"
|
||
|
|
||
|
|
||
|
@implementation UpdateButton
|
||
|
|
||
|
- (void)resetCursorRects {
|
||
|
[self addCursorRect:[self bounds] cursor:[NSCursor pointingHandCursor]];
|
||
|
}
|
||
|
|
||
|
@end
|