~ubuntu-branches/ubuntu/natty/monodevelop/natty

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Projects.Gui/MonoDevelop.Projects.Gui.Completion/CompletionListWindow.cs

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2008-03-29 23:36:33 UTC
  • mto: (1.5.1 sid)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: james.westby@ubuntu.com-20080329233633-l550uuwvfh1e68at
Tags: upstream-1.0+dfsg
ImportĀ upstreamĀ versionĀ 1.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
389
389
                
390
390
                void OnCompletionDataChanged (object s, EventArgs args)
391
391
                {
 
392
                        string last = null;
 
393
                        if (Visible)
 
394
                                last = CompleteWord;
 
395
 
392
396
                        HideFooter ();
393
397
                        if (Visible) {
394
398
                                Reset ();
395
399
                                FillList ();
 
400
                                if (last != null)
 
401
                                        SelectEntry (last);
396
402
                        }
397
403
                }
398
404
        }