From 8448ee3479fe210cbf242b83f9e2cff1fd727bcc Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 17 Feb 2017 08:34:33 -0500 Subject: [PATCH] No swears. xD --- ShiftOS.WinForms/Applications/ExperienceShifter.cs | 5 ++++- ShiftOS_TheReturn/Commands.cs | 4 ++-- 2 files changed, 6 insertions(+), 3 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() diff --git a/ShiftOS_TheReturn/Commands.cs b/ShiftOS_TheReturn/Commands.cs index acbecce..401d1f3 100644 --- a/ShiftOS_TheReturn/Commands.cs +++ b/ShiftOS_TheReturn/Commands.cs @@ -232,7 +232,7 @@ namespace ShiftOS.Engine #if DEVEL internal class Rock : Exception { - internal Rock() : base("Someone threw a motherfucking rock at the window, and the Terminal fucking shattered.") + internal Rock() : base("Someone threw a rock at the window, and the Terminal shattered.") { } @@ -244,7 +244,7 @@ namespace ShiftOS.Engine [Command("rock", description = "A little surprise for unstable builds...")] public static bool ThrowAFuckingRock() { - Infobox.Show("Fuck.", new Rock().Message); + Infobox.Show("He who lives in a glass house shouldn't throw stones...", new Rock().Message); return false; }