mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
* Source/NSSegmentedCell.m (-startTrackingAt:inView:,
-continueTracking:at:inView:): Add this methods to enable tracking for this class. Patch suggested by Josh Freeman <pikopixel@twilightedge.com>.
This commit is contained in:
parent
3ad98f9474
commit
5735e0775d
2 changed files with 19 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2018-02-27 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSSegmentedCell.m (-startTrackingAt:inView:,
|
||||
-continueTracking:at:inView:): Add this methods to enable
|
||||
tracking for this class.
|
||||
Patch suggested by Josh Freeman <pikopixel@twilightedge.com>.
|
||||
|
||||
2018-02-27 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Headers/Additions/GNUstepGUI/GSTheme.h,
|
||||
|
|
|
@ -709,6 +709,18 @@
|
|||
return self;
|
||||
}
|
||||
|
||||
- (BOOL) startTrackingAt: (NSPoint)startPoint inView: (NSView*)controlView
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
|
||||
- (BOOL) continueTracking: (NSPoint)lastPoint
|
||||
at: (NSPoint)currentPoint
|
||||
inView: (NSView*)controlView
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
|
||||
- (void) stopTracking: (NSPoint)lastPoint
|
||||
at: (NSPoint)stopPoint
|
||||
inView: (NSView*)controlView
|
||||
|
|
Loading…
Reference in a new issue