Compare commits

...

2 Commits

2 changed files with 7 additions and 1 deletions

View File

@ -37,7 +37,7 @@ AM_CONDITIONAL([HAVE_PO], [false])
AC_SUBST(LTLIBINTL)
# check for Enlightenment
PKG_CHECK_MODULES(E, [enlightenment >= 0.17.99])
PKG_CHECK_MODULES(E, [enlightenment >= 0.18.2 enlightenment < 0.18.99])
release=$(pkg-config --variable=release enlightenment)
MODULE_ARCH="$host_os-$host_cpu-$release"
AC_SUBST(MODULE_ARCH)

View File

@ -221,6 +221,12 @@ _places_udisks_vol_props_cb(void *data, const Eldbus_Message *msg, Eldbus_Pendin
eldbus_message_iter_arguments_get(var, "b", &bool);
if (bool) return;
}
// skip volumes with presentation.hide set
if (!strcmp(key, "DevicePresentationHide"))
{
eldbus_message_iter_arguments_get(var, "b", &bool);
if (bool) return;
}
else if (!strcmp(key, "IdUsage"))
eldbus_message_iter_arguments_get(var, "s", &id_usage);
else if (!strcmp(key, "DeviceFile"))