refine "Running" message.

This commit is contained in:
Robin Gareus 2015-08-11 19:44:14 +02:00
parent 679903fd22
commit 212a4c1f8d
1 changed files with 5 additions and 1 deletions

View File

@ -2756,7 +2756,11 @@ EngineControl::engine_running ()
connect_disconnect_button.show();
started_at_least_once = true;
engine_status.set_markup(string_compose ("<span foreground=\"green\">%1</span>", _("Running")));
if (_have_control) {
engine_status.set_markup(string_compose ("<span foreground=\"green\">%1</span>", _("Running")));
} else {
engine_status.set_markup(string_compose ("<span foreground=\"green\">%1</span>", _("Connected")));
}
update_sensitivity();
}