Bugfix (untested): prevent cursor to go to the beginning while typing in a slider textctrl. #3779

This commit is contained in:
Alessandro Ranellucci 2017-03-20 19:28:08 +01:00
parent 0c4e16589b
commit a69e4e39c9

View File

@ -573,7 +573,8 @@ sub get_value {
sub _update_textctrl {
my ($self) = @_;
$self->textctrl->SetLabel($self->get_value);
$self->textctrl->ChangeValue($self->get_value);
$self->textctrl->SetInsertionPointEnd;
}
sub enable {