Show android device name when connected only one device

This commit is contained in:
volzhs 2020-10-12 21:47:00 +09:00
parent c35005ba25
commit 778e982cff

View file

@ -76,8 +76,10 @@ void EditorRunNative::_notification(int p_what) {
} else {
mb->get_popup()->clear();
mb->show();
mb->set_tooltip(eep->get_options_tooltip());
if (dc > 1) {
if (dc == 1) {
mb->set_tooltip(eep->get_option_tooltip(0));
} else {
mb->set_tooltip(eep->get_options_tooltip());
for (int i = 0; i < dc; i++) {
mb->get_popup()->add_icon_item(eep->get_option_icon(i), eep->get_option_label(i));
mb->get_popup()->set_item_tooltip(mb->get_popup()->get_item_count() - 1, eep->get_option_tooltip(i));