Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 174213 | Differences between
and this patch

Collapse All | Expand All

(-)Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java (+6 lines)
Lines 3396-3401 Link Here
3396
									IWorkbenchPage.VIEW_CREATE);
3396
									IWorkbenchPage.VIEW_CREATE);
3397
							activatedStickyViewsInThisPerspective.add(viewId);
3397
							activatedStickyViewsInThisPerspective.add(viewId);
3398
						}
3398
						}
3399
                        // remove a view if it's sticky and its not visible in the old perspective
3400
                        else if (newPersp.findView(viewId) != null
3401
                        		&& oldPersp.findView(viewId) == null) {
3402
                        	hideView(newPersp.findView(viewId));
3403
                        	activatedStickyViewsInThisPerspective.remove(viewId);
3404
                        }
3399
                    } catch (PartInitException e) {
3405
                    } catch (PartInitException e) {
3400
                        WorkbenchPlugin
3406
                        WorkbenchPlugin
3401
                                .log(
3407
                                .log(

Return to bug 174213