Add all LVM devices to the bottom of the devices list.

This commit is contained in:
Chantara Tith 2016-08-14 22:23:17 +07:00 committed by Andrius Štikonas
parent fabde86139
commit eb3910679c
1 changed files with 2 additions and 1 deletions

View File

@ -68,9 +68,10 @@ void DeviceScanner::scan()
for (const auto &d : deviceList)
operationStack().addDevice(d);
operationStack().sortDevices();
for (const auto &d : lvmList)
operationStack().addDevice(d);
operationStack().sortDevices();
}