https://bugs.kde.org/show_bug.cgi?id=459859

David Korth <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #5 from David Korth <[email protected]> ---
Can still reproduce in 5.27.0.

In RunCommand.qml:

function runCurrentIndex(event) {
    var entry = runnerManager.history[currentIndex]
    if (entry) {
        // If user presses Shift+Return to invoke an action, invoke the first
runner action
        if (event && event.modifiers === Qt.ShiftModifier
                && currentItem.additionalActions &&
currentItem.additionalActions.length > 0) {
            runAction(0);
            return
        }

        queryField.text = entry
        queryField.forceActiveFocus();
    }
}

I'm not able to debug this myself (no experience with QML), but it seems like
the access to runnerManager.history[] might be blocking until something's
present in the list?

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to