diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2011-09-21 08:08:02 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2011-09-21 08:08:02 +0200 |
commit | 997bb8d48921854c0da215adcab4bf477163887a (patch) | |
tree | 1e8a7927f3f3e291258b1279c758ffa43abfe1e1 | |
parent | 0c4b45fd524488bc323decce574731f49fa6a65f (diff) | |
download | acritoxinstaller-997bb8d48921854c0da215adcab4bf477163887a.zip acritoxinstaller-997bb8d48921854c0da215adcab4bf477163887a.tar.gz |
call fill_hdmap when using simple partitioning
-rw-r--r-- | wizard/rootpartition.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wizard/rootpartition.cpp b/wizard/rootpartition.cpp index f60f5e8..dbecf43 100644 --- a/wizard/rootpartition.cpp +++ b/wizard/rootpartition.cpp @@ -57,6 +57,7 @@ bool wpRootPartition::validatePage() backend->exec(QString("hdmap_set %1:/:%2:auto") .arg(rootPartitionDev->currentItem()->text().section(" ",0,0)) .arg(chkFormat->isChecked() ? rootPartitionFs->currentText() : "")); + backend->exec("fill_hdmap"); return true; } |