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 420337
Collapse All | Expand All

(-)a/bundles/org.eclipse.orion.client.ui/web/orion/editorCommands.js (+3 lines)
Lines 421-426 Link Here
421
					if (!editor.getTextView()) {
421
					if (!editor.getTextView()) {
422
						return false;
422
						return false;
423
					}
423
					}
424
					if (self.editorSettings && !self.editorSettings().showBlame) {
425
						return false;
426
					}
424
					return blamer.isVisible(self.serviceRegistry, self.inputManager);
427
					return blamer.isVisible(self.serviceRegistry, self.inputManager);
425
				},
428
				},
426
				callback: function(data) {
429
				callback: function(data) {
(-)a/bundles/org.eclipse.orion.client.ui/web/orion/editorPreferences.js (+2 lines)
Lines 29-34 Link Here
29
		autoLoadVisible: true,
29
		autoLoadVisible: true,
30
		saveDiffs: true,
30
		saveDiffs: true,
31
		saveDiffsVisible: true,
31
		saveDiffsVisible: true,
32
		showBlame: false,
33
		showBlameVisible: true,
32
		autoPairParentheses: true,
34
		autoPairParentheses: true,
33
		autoPairParenthesesVisible: true,
35
		autoPairParenthesesVisible: true,
34
		autoPairBraces: true,
36
		autoPairBraces: true,
(-)a/bundles/org.eclipse.orion.client.ui/web/orion/settings/nls/root/messages.js (+2 lines)
Lines 166-171 Link Here
166
	"autoPairQuotations": 'Autopair "Strings"',
166
	"autoPairQuotations": 'Autopair "Strings"',
167
	"autoCompleteComments": "Autocomplete /** Block Comments */",
167
	"autoCompleteComments": "Autocomplete /** Block Comments */",
168
	"smartIndentation": "Smart Indentation",
168
	"smartIndentation": "Smart Indentation",
169
	"sourceControl": "Source Control",
170
	"showBlame": "Show Blame",
169
	"Editor preferences updated": "Editor preferences updated",
171
	"Editor preferences updated": "Editor preferences updated",
170
	"Editor defaults restored": "Editor defaults restored",
172
	"Editor defaults restored": "Editor defaults restored",
171
	"Theme": "Theme",
173
	"Theme": "Theme",
(-)a/bundles/org.eclipse.orion.client.ui/web/orion/widgets/settings/EditorSettings.js (+5 lines)
Lines 183-188 Link Here
183
				overviewRuler: {
183
				overviewRuler: {
184
					create: createBooleanProperty
184
					create: createBooleanProperty
185
				}
185
				}
186
			},
187
			sourceControl: {
188
				showBlame: {
189
					create: createBooleanProperty
190
				}
186
			}
191
			}
187
		}
192
		}
188
	};
193
	};

Return to bug 420337