diff options
author | ritsuka <[email protected]> | 2009-03-07 07:35:56 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2009-03-07 07:35:56 +0000 |
commit | d9e3f77601ef69cf0c561739e44cb0ca1f78ddaf (patch) | |
tree | 0dd94fd4dcfa13d7d23b65d03af82640906f7220 /macosx | |
parent | 8afa3d96f8a727d134148def370337412cdc3dd0 (diff) |
MacGui: Reverted the updateUI: timer mode to NSDefaultRunLoopMode. Hopefully this will fix the ui weird behavior on x86_64 (progress bar lockup, interface slowdown, etc)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2236 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/Controller.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 13179e8d3..788d41c4e 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -108,7 +108,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It [[NSRunLoop currentRunLoop] addTimer:[NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(updateUI:) userInfo:nil repeats:YES] - forMode:NSEventTrackingRunLoopMode]; + forMode:NSDefaultRunLoopMode]; // Open debug output window now if it was visible when HB was closed if ([[NSUserDefaults standardUserDefaults] boolForKey:@"OutputPanelIsOpen"]) |