Devices: remove "not implemented" driver line

This just confuses users. Let's re-add it when we have implemented it.
This commit is contained in:
Adrien Destugues 2018-11-09 20:30:39 +01:00
parent 0ca6ba69fa
commit c4bb4fbb7e

View File

@ -103,8 +103,13 @@ DevicePCI::InitFromAttributes()
SetAttribute(B_TRANSLATE("Device name"), DeviceName);
SetAttribute(B_TRANSLATE("Manufacturer"), ManufacturerName);
#if 0
// These are a source of confusion for users, leading them to think there
// is no driver for their device. Until we can display something useful,
// let's not show the lines at all.
SetAttribute(B_TRANSLATE("Driver used"), B_TRANSLATE("Not implemented"));
SetAttribute(B_TRANSLATE("Device paths"), B_TRANSLATE("Not implemented"));
#endif
SetAttribute(B_TRANSLATE("Class info"), classInfo);
fCategory = (Category)fClassBaseId;
BString outlineName;