diff options
| author | Michael <[email protected]> | 2017-07-19 16:08:33 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-07-19 16:08:33 -0400 |
| commit | b8eb7dccfdd16bd1d39bbedeb176fce7f0f1dc9e (patch) | |
| tree | 4502ced3e939ff3725bc7c1925f1ba88b62653d8 /ShiftOS.Frontend/GUI/TextControl.cs | |
| parent | 3fe1872f5f81f8203e57cbba2dca6ce833f08f22 (diff) | |
| download | shiftos_thereturn-b8eb7dccfdd16bd1d39bbedeb176fce7f0f1dc9e.tar.gz shiftos_thereturn-b8eb7dccfdd16bd1d39bbedeb176fce7f0f1dc9e.tar.bz2 shiftos_thereturn-b8eb7dccfdd16bd1d39bbedeb176fce7f0f1dc9e.zip | |
Fix terminal and add support for animations
Diffstat (limited to 'ShiftOS.Frontend/GUI/TextControl.cs')
| -rw-r--r-- | ShiftOS.Frontend/GUI/TextControl.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ShiftOS.Frontend/GUI/TextControl.cs b/ShiftOS.Frontend/GUI/TextControl.cs index f1bbef1..1e23680 100644 --- a/ShiftOS.Frontend/GUI/TextControl.cs +++ b/ShiftOS.Frontend/GUI/TextControl.cs @@ -4,6 +4,7 @@ using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; +using Microsoft.Xna.Framework; using ShiftOS.Frontend.GraphicsSubsystem; namespace ShiftOS.Frontend.GUI @@ -14,7 +15,7 @@ namespace ShiftOS.Frontend.GUI private TextAlign _textAlign = TextAlign.TopLeft; private Font _font = new Font("Tahoma", 9f); - protected override void OnLayout() + protected override void OnLayout(GameTime gameTime) { if (AutoSize) { |
