2004-09-05 06:23 Matt Rice <ratmice@yahoo.com>

* Source/GSServicesManager.m: new method -activateIgnoringOtherApps:
        * Source/NSWorkspace.m (-launchApplication:showIcon:autolaunch:):
        call -activateIgnoringOtherApps: on the remote connection to an already
        running app.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@19998 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Matt Rice 2004-09-05 13:46:13 +00:00
parent 7d98f0f270
commit 353db5256c
3 changed files with 17 additions and 0 deletions

View file

@ -1152,6 +1152,10 @@ inFileViewerRootedAtPath: (NSString*)rootFullpath
}
return [self _launchApplication: appName arguments: args];
}
else
{
[app activateIgnoringOtherApps:YES];
}
return YES;
}