equal
deleted
inserted
replaced
570 |
570 |
571 _LIT(KArgArgs, "script_args"); |
571 _LIT(KArgArgs, "script_args"); |
572 aArguments.AppendStringL(iScriptArgs, KArgArgs); |
572 aArguments.AppendStringL(iScriptArgs, KArgArgs); |
573 } |
573 } |
574 |
574 |
575 void CShell::StdinChange(TUint) |
575 void CShell::StdinChange(TUint aChange) |
576 { |
576 { |
577 if (iLineEditor && !iIgnoreNextStdinChange) |
577 if (iLineEditor && !iIgnoreNextStdinChange && (aChange & RIoReadHandle::EGainedForeground)) // We don't care if the console has just resized |
578 { |
578 { |
579 iLineEditor->Redraw(); |
579 iLineEditor->Redraw(); |
580 } |
580 } |
581 iIgnoreNextStdinChange = EFalse; |
581 iIgnoreNextStdinChange = EFalse; |
582 } |
582 } |