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,6 +1228,8 @@ _wireless_gadget_refresh(Instance *inst)
avail++;
}
}
if (!avail)
{
for (type = WIRELESS_SERVICE_TYPE_WIFI; type < WIRELESS_SERVICE_TYPE_LAST; type++)
{
if (!inst->icon[type]) continue;
@ -1238,6 +1240,7 @@ _wireless_gadget_refresh(Instance *inst)
evas_object_show(inst->icon[type]);
avail++;
}
}
if (!avail)
{
type = WIRELESS_SERVICE_TYPE_ETHERNET;