always hide wireless non-wired icons in gadget if wired connection exists

the most common use case when using a wired connection is to not also be
using a wireless connection
This commit is contained in:
Mike Blumenkrantz 2017-09-12 13:21:09 -04:00
parent 721eeb994e
commit 50fc7d1276
1 changed files with 11 additions and 8 deletions

View File

@ -1228,15 +1228,18 @@ _wireless_gadget_refresh(Instance *inst)
avail++;
}
}
for (type = WIRELESS_SERVICE_TYPE_WIFI; type < WIRELESS_SERVICE_TYPE_LAST; type++)
if (!avail)
{
if (!inst->icon[type]) continue;
if ((wireless_config->disabled_types & (1U << type)) == (1U << type)) continue;
if (wireless_type_enabled[type] && (!wireless_network_count[type])) continue;
elm_box_pack_end(inst->box, inst->icon[type]);
evas_object_show(inst->icon[type]);
avail++;
for (type = WIRELESS_SERVICE_TYPE_WIFI; type < WIRELESS_SERVICE_TYPE_LAST; type++)
{
if (!inst->icon[type]) continue;
if ((wireless_config->disabled_types & (1U << type)) == (1U << type)) continue;
if (wireless_type_enabled[type] && (!wireless_network_count[type])) continue;
elm_box_pack_end(inst->box, inst->icon[type]);
evas_object_show(inst->icon[type]);
avail++;
}
}
if (!avail)
{