Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions frame/qml/PanelPopup.qml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ Item {
if (!popupWindow)
return

// The popup is being displayed. If you click on other plugin at this time,
// the popup content of the previous plugin will be displayed first,
// and the wrong popup size will cause the window size to change and flicker.
if (popupWindow.visible) {
popupWindow.close()
popupWindow.currentItem = null
}

readyBinding = Qt.binding(function () {
return popupWindow && popupWindow.currentItem === control
})
Expand Down
Loading