Author: ug Date: Wed Feb 27 17:38:25 2008 New Revision: 45089
URL: http://svn.opensuse.org/viewcvs/yast?rev=45089&view=rev Log: minor
Modified: trunk/autoinstallation/src/dialogs/ask.ycp trunk/autoinstallation/src/include/conftree.ycp
Modified: trunk/autoinstallation/src/dialogs/ask.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/autoinstallation/src/dialogs/ask.... ============================================================================== --- trunk/autoinstallation/src/dialogs/ask.ycp (original) +++ trunk/autoinstallation/src/dialogs/ask.ycp Wed Feb 27 17:38:25 2008 @@ -54,7 +54,7 @@ integer jumpToDialog = -2; if( SCR::Read(.target.size, "/tmp/next_dialog") > 0 ) { string s = (string)(SCR::Read(.target.string, "/tmp/next_dialog")); - s = filterchars( s, "0123456789" ); + s = filterchars( s, "-0123456789" ); jumpToDialog = tointeger(s); SCR::Execute(.target.remove, "/tmp/next_dialog"); y2milestone("next_dialog file found. Set dialog to %1",jumpToDialog); @@ -226,7 +226,7 @@ feedback = (string)SCR::Read(.target.string, current_logdir+"/"+scriptName+".log" ); } if( size(feedback) > 0 ) { - Popup::LongText("", `RichText(`opt(`plainText), feedback), 50, 20 ); + Popup::LongText("", `RichText(`opt(`plainText), feedback), 40, 15 ); } if( SCR::Read(.target.size, "/tmp/next_dialog") > 0 ) { string s = (string)(SCR::Read(.target.string, "/tmp/next_dialog"));
Modified: trunk/autoinstallation/src/include/conftree.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/autoinstallation/src/include/conf... ============================================================================== --- trunk/autoinstallation/src/include/conftree.ycp (original) +++ trunk/autoinstallation/src/include/conftree.ycp Wed Feb 27 17:38:25 2008 @@ -539,7 +539,7 @@ if ( Profile::Save( AutoinstConfig::currentFile )) { Popup::Message(sformat(_("File %1 was saved successfully."), AutoinstConfig::currentFile)); - Profile::checkProfile(); + //Profile::checkProfile(); Profile::changed = false; } else
yast-commit@lists.opensuse.org