[Lunar-commits] r23265 - lunar-iso/trunk/lunar-install/sbin
Auke Kok
sofar at lunar-linux.org
Wed Feb 14 06:55:15 CET 2007
Author: sofar
Date: 2007-02-14 06:55:15 +0100 (Wed, 14 Feb 2007)
New Revision: 23265
Modified:
lunar-iso/trunk/lunar-install/sbin/lunar-install
Log:
Don't turn this item green if the user cancelled selection. Makes it consistent with other menus
Modified: lunar-iso/trunk/lunar-install/sbin/lunar-install
===================================================================
--- lunar-iso/trunk/lunar-install/sbin/lunar-install 2007-02-14 05:15:20 UTC (rev 23264)
+++ lunar-iso/trunk/lunar-install/sbin/lunar-install 2007-02-14 05:55:15 UTC (rev 23265)
@@ -1277,8 +1277,10 @@
LANG=${LANG:-en_US}
LANG=$($DIALOG --title "Language Selection Menu" --default-item "$LANG" --menu "$HELP" 0 0 0 `show_languages`)
- export LANG
- E_OK=\\Z2
+ if [ $? == 0 ]; then
+ export LANG
+ E_OK=\\Z2
+ fi
DEFAULT=J
}
More information about the Lunar-commits
mailing list