Don't move wxTextCtrl insertion point if it doesn't really change
Resetting the insertion point position to 0 after calling wxTextCtrl::SetValue() or ChangeValue() which didn't really change the control contents was unexpected, as such calls are supposed to be "optimized away", and this was indeed the case under wxMSW and wxOSX, but not in wxGTK. So change wxGTK to follow the other ports, add a unit test checking for this behaviour and officially document it. As a side effect, this ensures that the numeric validator classes don't reset the insertion point position to 0 on every focus loss under wxGTK, as happened before.
This commit is contained in:
@@ -533,7 +533,8 @@ public:
|
||||
would return @false immediately after the call to SetValue().
|
||||
|
||||
The insertion point is set to the start of the control (i.e. position
|
||||
0) by this function.
|
||||
0) by this function unless the control value doesn't change at all, in
|
||||
which case the insertion point is left at its original position.
|
||||
|
||||
Note that, unlike most other functions changing the controls values,
|
||||
this function generates a @c wxEVT_TEXT event. To avoid
|
||||
|
Reference in New Issue
Block a user