diff --git a/CHANGELOG.md b/CHANGELOG.md index 9010c33189b..ef5f7528856 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,6 +45,8 @@ - [Pasting tabular data now creates Table.input expressions][11695]. - [No halo is displayed around components when hovering][11715]. - [The hover area of the component output port extended twice its size][11715]. +- [In the table visualization and table widget, the table context menu can now + be opened on OS X][11755]. - [Fix some UI elements drawing on top of visualization toolbar dropdown menus][11768]. diff --git a/app/gui/src/project-view/components/GraphEditor/GraphNode.vue b/app/gui/src/project-view/components/GraphEditor/GraphNode.vue index 16574f0fadb..e7067dd2414 100644 --- a/app/gui/src/project-view/components/GraphEditor/GraphNode.vue +++ b/app/gui/src/project-view/components/GraphEditor/GraphNode.vue @@ -499,7 +499,6 @@ const showMenuAt = ref<{ x: number; y: number }>() @pointerenter="(nodeHovered = true), updateNodeHover($event)" @pointerleave="(nodeHovered = false), updateNodeHover(undefined)" @pointermove="updateNodeHover" - @contextmenu.stop.prevent="ensureSelected(), (showMenuAt = $event)" >