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
parent b48ab75b87
commit 39bf73c5ce
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();
}