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 60479 | Differences between
and this patch

Collapse All | Expand All

(-)Eclipse UI/org/eclipse/ui/internal/presentations/DefaultEditorPresentation.java (+1 lines)
Lines 52-57 Link Here
52
                int tabLocation = preferenceStore
52
                int tabLocation = preferenceStore
53
                        .getInt(IPreferenceConstants.EDITOR_TAB_POSITION);
53
                        .getInt(IPreferenceConstants.EDITOR_TAB_POSITION);
54
                getTabFolder().setTabPosition(tabLocation);
54
                getTabFolder().setTabPosition(tabLocation);
55
                layout(false);
55
            } else if (IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS
56
            } else if (IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS
56
                    .equals(propertyChangeEvent.getProperty())
57
                    .equals(propertyChangeEvent.getProperty())
57
                    && !isDisposed()) {
58
                    && !isDisposed()) {
(-)Eclipse UI/org/eclipse/ui/internal/presentations/DefaultViewPresentation.java (+1 lines)
Lines 42-47 Link Here
42
			if (IPreferenceConstants.VIEW_TAB_POSITION.equals(propertyChangeEvent.getProperty()) && !isDisposed()) {
42
			if (IPreferenceConstants.VIEW_TAB_POSITION.equals(propertyChangeEvent.getProperty()) && !isDisposed()) {
43
				int tabLocation = preferenceStore.getInt(IPreferenceConstants.VIEW_TAB_POSITION); 
43
				int tabLocation = preferenceStore.getInt(IPreferenceConstants.VIEW_TAB_POSITION); 
44
				getTabFolder().setTabPosition(tabLocation);
44
				getTabFolder().setTabPosition(tabLocation);
45
				layout(false);
45
			} else if (IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS.equals(propertyChangeEvent.getProperty()) && !isDisposed()) {
46
			} else if (IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS.equals(propertyChangeEvent.getProperty()) && !isDisposed()) {
46
				boolean traditionalTab = apiPreferenceStore.getBoolean(IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS); 
47
				boolean traditionalTab = apiPreferenceStore.getBoolean(IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS); 
47
				setTabStyle(traditionalTab);
48
				setTabStyle(traditionalTab);

Return to bug 60479