-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Issue by MiguelCastillo
Saturday Apr 26, 2014 at 15:10 GMT
Originally opened as adobe/brackets#7660
So, maybe I am missing something. But I have tried getting inline editors to come up based on the description here. https://github.com/adobe/brackets/wiki/How-to-Use-Brackets
I have tried sprint 38 vanilla with no extensions... I have also tried running from git:master.
I haven't had any luck getting inline editors to come up. So, I expect inline editor to come up if I place the cursor in update in script below below in line scrollbarsApply.update(themeManager);.
function scrollbarsApply(themeManager) {
scrollbarsApply.update(themeManager);
}
scrollbarsApply.update = function(themeManager) {
theme = themeManager ? themeManager.getThemes()[0] : (theme || {});
if ( Settings.getValue("customScrollbars") ) {
var scrollbar = (theme.scrollbar || []).join(" ");
$scrollbars.text(scrollbar || "");
}
else {
$scrollbars.text("");
}
};
scrollbarsApply.enable = function(themeManager) {
Settings.setValue("customScrollbars", true);
scrollbarsApply.update(themeManager);
};
scrollbarsApply.disable = function(themeManager) {
Settings.setValue("customScrollbars", true);
scrollbarsApply.update(themeManager);
};Metadata
Metadata
Assignees
Labels
No labels