Skip to content

Commit c056502

Browse files
committed
Fix Textbox Caret issue
Add an "Invalidate()" so it updates de Caret position on the textbox inputs.
1 parent a73e5c7 commit c056502

4 files changed

Lines changed: 4 additions & 1 deletion

File tree

BuildCommand.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dotnet publish -p:Configuration=Release -p:PackageVersion=0.8.0-beta -p:Version=0.8.0

CleanCommand.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Get-ChildItem.\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }

Intersect.Client.Framework/Gwen/Align.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Intersect.Client.Framework.Gwen.Control;
1+
using Intersect.Client.Framework.Gwen.Control;
22

33
namespace Intersect.Client.Framework.Gwen;
44

Intersect.Client.Framework/Gwen/Control/Label.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -770,6 +770,7 @@ protected override void OnChildBoundsChanged(Base child, Rectangle oldChildBound
770770

771771
protected virtual void OnTextExceedsSize(Point ownSize, Point textSize)
772772
{
773+
Invalidate();
773774
}
774775

775776
public virtual void SetTextScale(float scale)

0 commit comments

Comments
 (0)