Changeset 3637
- Timestamp:
- 03/20/09 07:20:28 (12 months ago)
- Files:
-
- 1 modified
-
pcbsd/trunk/PCInstall/pcinstall.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pcbsd/trunk/PCInstall/pcinstall.cpp
r3598 r3637 927 927 928 928 929 if ( PartMB < 4000 )929 if ( PartMB < 10000 ) 930 930 { 931 textPartInfo->setText(tr("Error: PC-BSD needs a partition with at least 4GB of space."));931 textPartInfo->setText(tr("Error: PC-BSD needs a partition with at least 10GB of space.")); 932 932 setNextEnabled(currentPage(), FALSE); 933 933 return; … … 1952 1952 void PCInstall::EditLabelSlot( QString &Blocks ) 1953 1953 { 1954 // Check if we are trying to resize / to less than 10GB 1955 if ( listViewSlices->currentItem()->text(1) == "/" && Blocks < 10000 ) 1956 { 1957 QMessageBox::information( this, tr("DiskLabel Error:"), tr("The '/' partition must be a minimum of 10GB.") ); 1958 return; 1959 } 1954 1960 SliceMB[CurrentEditLabel] = Blocks; 1955 1961 populateSlices();
