[partition] When running UNSAFE, no-install-partition is a warning

This commit is contained in:
Adriaan de Groot 2019-05-28 16:29:45 +02:00
parent 447a39d71d
commit e2b71e669e

View File

@ -638,7 +638,11 @@ PartitionViewStep::checkRequirements()
[]{ return tr( "has at least one disk device available." ); },
[]{ return tr( "There are no partitons to install on." ); },
m_core->deviceModel()->rowCount() > 0, // satisfied
true // required
#ifdef DEBUG_PARTITION_UNSAFE
false // optional
#else
true // required
#endif
} );
return l;