Skip to content

Commit

Permalink
[PyCharm] PY-65433 Jupyter cell DnD MVP enabled in master
Browse files Browse the repository at this point in the history
GitOrigin-RevId: d4ca83421637f3c6cbd943d455fa32246a8eb4b9
  • Loading branch information
kirilenko-jb authored and intellij-monorepo-bot committed Jan 21, 2025
1 parent db4534a commit 03e0b62
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,12 @@ class NotebookBelowCellDelimiterPanel(
toolTipText = tooltipText
}
}
else {
executionLabel?.let { remove(it) }
executionLabel = null
else { // temporary measure to fit the drag icon, see PY-65433
getOrCreateExecutionLabel().apply {
text = ""
icon = AllIcons.Empty
toolTipText = null
}
}
}

Expand Down

0 comments on commit 03e0b62

Please sign in to comment.