[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.rcp] Re: Progress Bar in Status Line

Ah, that did it. I figured I was being dumb and just missed something like that.

On another note, the preWindowOpen isn't deprecated; it's just been moved to another class (WorkbenchWindowAdvisor).

Thanks!
Dan


Oliver Schmidt wrote:

preWindowOpen seems to be deprecated now, but this overwritten method in your WorkbenchAdvisor does it:

	public void preWindowOpen(IWorkbenchWindowConfigurer configurer) {
		super.preWindowOpen(configurer);
                ...
		configurer.setShowStatusLine(true);
                configurer.setShowProgressIndicator(true);
	}

Kind regards,
Oliver