Prevent double connection check

This commit is contained in:
Alessandro Ranellucci 2015-11-06 16:34:54 +01:00
parent 3cbc35143b
commit 25a358cd20

View file

@ -313,8 +313,8 @@ sub connect {
$self->{serial_speed_combobox}->GetValue, $self->{serial_speed_combobox}->GetValue,
); );
if (!$res) { if (!$res) {
$self->set_status("Connection failed"); $self->set_status("Connection failed. Check serial port and speed.");
} } else {
if ($self->sender->wait_connected) { if ($self->sender->wait_connected) {
$self->set_status("Printer is online. You can now start printing from the queue on the right."); $self->set_status("Printer is online. You can now start printing from the queue on the right.");
$self->status_timer->Start(STATUS_TIMER_INTERVAL, wxTIMER_CONTINUOUS); $self->status_timer->Start(STATUS_TIMER_INTERVAL, wxTIMER_CONTINUOUS);
@ -325,6 +325,7 @@ sub connect {
} else { } else {
$self->set_status("Connection failed. Check serial port and speed."); $self->set_status("Connection failed. Check serial port and speed.");
} }
}
$self->_update_connection_controls; $self->_update_connection_controls;
$self->reload_jobs; $self->reload_jobs;
} }