mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-03 17:00:39 +08:00
Bugfix (untested): prevent cursor to go to the beginning while typing in a slider textctrl. #3779
This commit is contained in:
parent
0c4e16589b
commit
a69e4e39c9
@ -573,7 +573,8 @@ sub get_value {
|
|||||||
|
|
||||||
sub _update_textctrl {
|
sub _update_textctrl {
|
||||||
my ($self) = @_;
|
my ($self) = @_;
|
||||||
$self->textctrl->SetLabel($self->get_value);
|
$self->textctrl->ChangeValue($self->get_value);
|
||||||
|
$self->textctrl->SetInsertionPointEnd;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub enable {
|
sub enable {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user