Skip to content

[CLOSED] Inline Editor (Quick Edit) does not come up. Sprint 38 #6889

@core-ai-bot

Description

@core-ai-bot

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions