aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-02-17 08:34:33 -0500
committerMichael <[email protected]>2017-02-17 08:34:33 -0500
commit8448ee3479fe210cbf242b83f9e2cff1fd727bcc (patch)
treecf8342068b4c211629126eb98a5ce723161b5a52 /ShiftOS.WinForms
parente255c7fd47c2f6e2e12befdc8808e9db8cc8f0d2 (diff)
downloadshiftos_thereturn-8448ee3479fe210cbf242b83f9e2cff1fd727bcc.tar.gz
shiftos_thereturn-8448ee3479fe210cbf242b83f9e2cff1fd727bcc.tar.bz2
shiftos_thereturn-8448ee3479fe210cbf242b83f9e2cff1fd727bcc.zip
No swears. xD
Diffstat (limited to 'ShiftOS.WinForms')
-rw-r--r--ShiftOS.WinForms/Applications/ExperienceShifter.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/Applications/ExperienceShifter.cs b/ShiftOS.WinForms/Applications/ExperienceShifter.cs
index 82706e8..2623b88 100644
--- a/ShiftOS.WinForms/Applications/ExperienceShifter.cs
+++ b/ShiftOS.WinForms/Applications/ExperienceShifter.cs
@@ -42,7 +42,10 @@ namespace ShiftOS.WinForms.Applications
public void PopulateDesktops()
{
lbdesktops.Items.Clear();
- lbdesktops.Items.Add("ShiftOS Desktop");
+ foreach(var desk in Desktop.GetAllDesktops())
+ {
+ lbdesktops.Items.Add(desk.DesktopName);
+ }
}
public void PopulateLaunchers()