diff options
| author | Michael <[email protected]> | 2017-02-21 13:26:17 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-02-21 13:26:17 -0500 |
| commit | 1c24beb10029955bbdd61099768ffde0f0ca9a1c (patch) | |
| tree | 138eb5fcda7b6d4ccec5384f2ef4cf5525879e7c /ShiftOS_TheReturn | |
| parent | 994f6b991a56382f530e3d43ad1f3a56c195559d (diff) | |
| download | shiftos_thereturn-1c24beb10029955bbdd61099768ffde0f0ca9a1c.tar.gz shiftos_thereturn-1c24beb10029955bbdd61099768ffde0f0ca9a1c.tar.bz2 shiftos_thereturn-1c24beb10029955bbdd61099768ffde0f0ca9a1c.zip | |
Fix menu rendering bug.
Diffstat (limited to 'ShiftOS_TheReturn')
| -rw-r--r-- | ShiftOS_TheReturn/Desktop.cs | 7 | ||||
| -rw-r--r-- | ShiftOS_TheReturn/Skinning.cs | 4 |
2 files changed, 9 insertions, 2 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); + } } } diff --git a/ShiftOS_TheReturn/Skinning.cs b/ShiftOS_TheReturn/Skinning.cs index e3512d8..4837dcd 100644 --- a/ShiftOS_TheReturn/Skinning.cs +++ b/ShiftOS_TheReturn/Skinning.cs @@ -348,7 +348,7 @@ namespace ShiftOS.Engine { [ShifterName("Panel button holder from left")] [ShifterDescription("How far from the left should the panel button holder be?")] [RequiresUpgrade("shift_panel_buttons")] - public int PanelButtonHolderFromLeft = 68; + public int PanelButtonHolderFromLeft = 100; [ShifterMeta("Windows")] [ShifterCategory("Window border")] @@ -832,7 +832,7 @@ namespace ShiftOS.Engine { [ShifterName("App launcher size")] [ShifterDescription("The size of the app launcher.")] [RequiresUpgrade("shift_app_launcher")] - public Size AppLauncherHolderSize = new Size(68, 24); + public Size AppLauncherHolderSize = new Size(100, 24); [ShifterMeta("Desktop")] [ShifterCategory("App Launcher")] |
