diff options
Diffstat (limited to 'ShiftOS_TheReturn/Desktop.cs')
| -rw-r--r-- | ShiftOS_TheReturn/Desktop.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ShiftOS_TheReturn/Desktop.cs b/ShiftOS_TheReturn/Desktop.cs index 256ab09..0373101 100644 --- a/ShiftOS_TheReturn/Desktop.cs +++ b/ShiftOS_TheReturn/Desktop.cs @@ -86,6 +86,8 @@ namespace ShiftOS.Engine void InvokeOnWorkerThread(Action act); Size GetSize(); + void OpenAppLauncher(Point loc); + void Show(); void Close(); } @@ -154,6 +156,11 @@ namespace ShiftOS.Engine { _desktop.PopulateAppLauncher(AppLauncherDaemon.Available().ToArray()); } + + public static void OpenAppLauncher(Point loc) + { + _desktop.OpenAppLauncher(loc); + } } } |
