diff options
| author | Michael <[email protected]> | 2017-07-03 08:55:21 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-07-03 08:55:21 -0400 |
| commit | 68362b4c6fe2e740ac02f7b4cb1ae77de3cfbd09 (patch) | |
| tree | a346b092eee671ab9fae32cbca23d22b171c748b /ShiftOS.Frontend/GraphicsSubsystem | |
| parent | 6f3a5cba2ea08ea6f442e2336b74f32f4bbc0604 (diff) | |
| download | shiftos_thereturn-68362b4c6fe2e740ac02f7b4cb1ae77de3cfbd09.tar.gz shiftos_thereturn-68362b4c6fe2e740ac02f7b4cb1ae77de3cfbd09.tar.bz2 shiftos_thereturn-68362b4c6fe2e740ac02f7b4cb1ae77de3cfbd09.zip | |
major optimizations, draggable windows
Diffstat (limited to 'ShiftOS.Frontend/GraphicsSubsystem')
| -rw-r--r-- | ShiftOS.Frontend/GraphicsSubsystem/UIManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS.Frontend/GraphicsSubsystem/UIManager.cs b/ShiftOS.Frontend/GraphicsSubsystem/UIManager.cs index a688757..705fc5d 100644 --- a/ShiftOS.Frontend/GraphicsSubsystem/UIManager.cs +++ b/ShiftOS.Frontend/GraphicsSubsystem/UIManager.cs @@ -78,7 +78,7 @@ namespace ShiftOS.Frontend.GraphicsSubsystem public static void ProcessMouseState(MouseState state) { - foreach(var ctrl in topLevels) + foreach(var ctrl in topLevels.ToArray()) { ctrl.ProcessMouseState(state); } |
