Fix grouping of barcode scanners
This commit is contained in:
parent
8e0aed8970
commit
ad22baeea1
@ -174,6 +174,9 @@ QString DeviceClass::baseInterface() const
|
||||
if (interface == "irrigation") {
|
||||
return "irrigation";
|
||||
}
|
||||
if (interface == "barcodescanner") {
|
||||
return "barcodescanner";
|
||||
}
|
||||
}
|
||||
return "uncategorized";
|
||||
}
|
||||
|
||||
@ -202,6 +202,8 @@ ApplicationWindow {
|
||||
return qsTr("Irrigation");
|
||||
case "ventilation":
|
||||
return qsTr("Ventilation")
|
||||
case "barcodescanner":
|
||||
return qsTr("Barcode scanners");
|
||||
case "uncategorized":
|
||||
return qsTr("Uncategorized")
|
||||
default:
|
||||
|
||||
Reference in New Issue
Block a user