Ignore:
Timestamp:
11/05/02 03:24:08 (21 years ago)
Author:
Nicholas Riley
Message:

PSDockBounceAlert: Make it work, assuming the app doesn't get brought
forward immediately upon the alarm activation.

NJRQTMediaPopUpButton: Fixed drag and drop. Added _descriptionForDraggingInfo:
to

PSMovieAlertController: Fixed movie vertical size, looks like a bug
got enshrined in the documentation.

PSAlarmAlertController: Don't force app to front until alerts are ready.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Cocoa/Pester/Source/PSDockBounceAlert.m

    r34 r40  
    2121}
    2222
     23+ (void)stopBouncing;
     24{
     25    [NSApp cancelUserAttentionRequest: NSInformationalRequest];
     26}
     27
    2328- (void)triggerForAlarm:(PSAlarm *)alarm;
    2429{
    2530    [NSApp requestUserAttention: NSInformationalRequest];
    26     [NSApp activateIgnoringOtherApps: YES];
    27     [NSApp cancelUserAttentionRequest: NSInformationalRequest];
     31    [[self class] performSelector: @selector(stopBouncing) withObject: nil afterDelay: 1 inModes: [NSArray arrayWithObject: NSDefaultRunLoopMode]];
    2832}
    2933
Note: See TracChangeset for help on using the changeset viewer.