diff options
author | jkh <jkh@FreeBSD.org> | 1999-12-17 02:46:04 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1999-12-17 02:46:04 +0000 |
commit | 38d1286e581917473f60cd947e43281e559fd94c (patch) | |
tree | bcf3f14373fab68c4b50c78d876b16c5865944cc /usr.sbin/sysinstall/disks.c | |
parent | b2296f0762c91f487672db3080e56267b120707f (diff) | |
download | FreeBSD-src-38d1286e581917473f60cd947e43281e559fd94c.zip FreeBSD-src-38d1286e581917473f60cd947e43281e559fd94c.tar.gz |
In retrospect, msgNotify() should leave its contents on the screen
longer to give the user something to look at while things are happening.
Change it to do so and insert the appropriate screen saves elsewhere.
Diffstat (limited to 'usr.sbin/sysinstall/disks.c')
-rw-r--r-- | usr.sbin/sysinstall/disks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/disks.c b/usr.sbin/sysinstall/disks.c index 20a7e90..2a611b9 100644 --- a/usr.sbin/sysinstall/disks.c +++ b/usr.sbin/sysinstall/disks.c @@ -678,7 +678,7 @@ diskPartitionWrite(dialogMenuItem *self) } /* Now it's not "yes", but "written" */ variable_set2(DISK_PARTITIONED, "written", 0); - return DITEM_SUCCESS; + return DITEM_SUCCESS | DITEM_RESTORE; } /* Partition a disk based wholly on which variables are set */ |