|
@@ -1753,6 +1753,7 @@ public class TextField : View
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ // BUGBUG: This assumes Frame == Bounds. It's also not clear what the intention is. For now, changed to always return 0.
|
|
|
private int OffSetBackground ()
|
|
|
{
|
|
|
var offB = 0;
|
|
@@ -1762,7 +1763,7 @@ public class TextField : View
|
|
|
offB = SuperView.Frame.Right - Frame.Right - 1;
|
|
|
}
|
|
|
|
|
|
- return offB;
|
|
|
+ return 0;//offB;
|
|
|
}
|
|
|
|
|
|
private int PositionCursor (MouseEvent ev)
|