Skip to content

Commit ae280bb

Browse files
committed
added Interation time to outer menu preview
1 parent 23f0c8c commit ae280bb

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

archinstall/lib/disk/disk_menu.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
from archinstall.lib.disk.encryption_menu import DiskEncryptionMenu
55
from archinstall.lib.models.device_model import (
6+
DEFAULT_ITER_TIME,
67
BtrfsOptions,
78
DiskEncryption,
89
DiskLayoutConfiguration,
@@ -261,6 +262,9 @@ def _prev_disk_encryption(self, item: MenuItem) -> str | None:
261262
if enc_config.encryption_password:
262263
output += tr('Password') + f': {enc_config.encryption_password.hidden()}\n'
263264

265+
if enc_type != EncryptionType.NoEncryption:
266+
output += tr('Iteration time') + f': {enc_config.iter_time or DEFAULT_ITER_TIME}ms\n'
267+
264268
if enc_config.partitions:
265269
output += f'Partitions: {len(enc_config.partitions)} selected\n'
266270
elif enc_config.lvm_volumes:

0 commit comments

Comments
 (0)