mirror of
https://github.com/godotengine/godot.git
synced 2024-11-24 13:12:42 +00:00
Show android device name when connected only one device
This commit is contained in:
parent
c35005ba25
commit
778e982cff
@ -76,8 +76,10 @@ void EditorRunNative::_notification(int p_what) {
|
||||
} else {
|
||||
mb->get_popup()->clear();
|
||||
mb->show();
|
||||
if (dc == 1) {
|
||||
mb->set_tooltip(eep->get_option_tooltip(0));
|
||||
} else {
|
||||
mb->set_tooltip(eep->get_options_tooltip());
|
||||
if (dc > 1) {
|
||||
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));
|
||||
|
Loading…
Reference in New Issue
Block a user