core/com.nokia.carbide.discovery.ui/src/com/nokia/carbide/internal/discovery/ui/extension/AbstractBrowserPortalPageLayer.java
changeset 1831 3319dd953212
parent 1822 8fdfd1446ad7
child 1832 aaf2f7bc0609
equal deleted inserted replaced
1829:1349793e6b11 1831:3319dd953212
   165 			Activator.runInUIThreadWhenProxyDataSet(browser, new Runnable() {
   165 			Activator.runInUIThreadWhenProxyDataSet(browser, new Runnable() {
   166 				@Override
   166 				@Override
   167 				public void run() {
   167 				public void run() {
   168 					URL url = getURL();
   168 					URL url = getURL();
   169 					if (url != null) {
   169 					if (url != null) {
   170 						browser.setUrl(url.toString());
   170 						if (!browser.setUrl(url.toString())) {
   171 						actionBar.setLoading(true);
   171 							browser.redraw();
       
   172 						}
   172 					}
   173 					}
   173 					actionBar.hookBrowser();
   174 					actionBar.hookBrowser();
   174 					actionBar.update();
   175 					actionBar.update();
   175 					browser.setFocus();
   176 					browser.setFocus();
   176 				}
   177 				}