From a0ee79dbcd26a8f07d493a7e993cbaf0d02e44db Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 17 Jul 2017 14:34:59 -0400 Subject: Hacking, barebones fskimmer, double clicking --- ShiftOS.Frontend/GraphicsSubsystem/UIManager.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'ShiftOS.Frontend/GraphicsSubsystem/UIManager.cs') diff --git a/ShiftOS.Frontend/GraphicsSubsystem/UIManager.cs b/ShiftOS.Frontend/GraphicsSubsystem/UIManager.cs index 165944e..a88f28e 100644 --- a/ShiftOS.Frontend/GraphicsSubsystem/UIManager.cs +++ b/ShiftOS.Frontend/GraphicsSubsystem/UIManager.cs @@ -146,11 +146,12 @@ namespace ShiftOS.Frontend.GraphicsSubsystem } } - public static void ProcessMouseState(MouseState state) + public static void ProcessMouseState(MouseState state, double lastLeftClickMS) { foreach(var ctrl in topLevels.ToArray()) { - ctrl.ProcessMouseState(state); + ctrl.ProcessMouseState(state, lastLeftClickMS); + } } -- cgit v1.2.3