installer.kmdr: fix alignment of 'Current partition status' box
This commit is contained in:
parent
fcd43a4df6
commit
af01e050d4
@ -1644,21 +1644,21 @@ for d in $devices; do
|
||||
[ "$is_system_internal" = "1" ] || add_info=",removable"
|
||||
[ "$volsize" -gt "0" ] || continue
|
||||
|
||||
thispart="<tr><td width=80>$v</td><td width=100>$fstype</td><td width=130>$volname</td><td width=100 align=right>$volsize MB</td>"
|
||||
thispart="<tr><td width=80>$v</td><td width=120>$fstype</td><td width=100%>$volname</td><td width=100 align=right>$volsize MB</td>"
|
||||
|
||||
case "$fstype" in
|
||||
swap) if [ $swaprequired -le $volsize ]; then
|
||||
swapok=1
|
||||
thispart="$thispart<td><b>@i18n("OK for swap")</b></td>"
|
||||
thispart="$thispart<td width=120><b>@i18n("OK for swap")</b></td>"
|
||||
fi
|
||||
;;
|
||||
unformatted|linux|ext2|ext3|ext4|reiserfs|reiser4)
|
||||
if [ $systemrequired -le $volsize ]; then
|
||||
linuxok=1
|
||||
thispart="$thispart<td><b>@i18n("OK for system")</b></td>"
|
||||
thispart="$thispart<td width=120><b>@i18n("OK for system")</b></td>"
|
||||
fi
|
||||
;;
|
||||
*) thispart="$thispart<td></td>"
|
||||
*) thispart="$thispart<td width=120></td>"
|
||||
;;
|
||||
esac
|
||||
thisdisk="${thispart}${thisdisk}"
|
||||
|
Loading…
Reference in New Issue
Block a user