Skip to content

Commit

Permalink
Merge branch '187637049-fix-chrome-125-dragging' into v5.10.x
Browse files Browse the repository at this point in the history
  • Loading branch information
scytacki committed May 20, 2024
2 parents 608cf39 + 811033a commit 31d2ad4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/plugins/dataflow/components/dataflow-tile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default class DataflowToolComponent extends BaseComponent<IProps, IDatafl
public render() {
const { readOnly, height, model, onRegisterTileApi, tileElt } = this.props;
const editableClass = readOnly ? "read-only" : "editable";
const classes = `dataflow-tool disable-tile-content-drag ${editableClass}`;
const classes = `dataflow-tool ${editableClass}`;
const { program, programDataRate } = this.getContent();
const tileContent = this.getContent();

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/dataflow/dataflow-registration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ registerTileContentInfo({
registerTileComponentInfo({
type: kDataflowTileType,
Component: DataflowToolComponent,
tileEltClass: "dataflow-tool-tile",
tileEltClass: "dataflow-tool-tile disable-tile-content-drag",
Icon,
HeaderIcon
});
2 changes: 1 addition & 1 deletion src/plugins/drawing/drawing-registration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ registerTileContentInfo({
registerTileComponentInfo({
type: kDrawingTileType,
Component: DrawingToolComponent,
tileEltClass: "drawing-tool-tile",
tileEltClass: "drawing-tool-tile disable-tile-content-drag",
Icon,
HeaderIcon,
tileHandlesOwnSelection: true
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/simulator/simulator-registration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ registerTileComponentInfo({
Component: SimulatorTileComponent,
Icon,
HeaderIcon,
tileEltClass: "simulator-tool-tile",
tileEltClass: "simulator-tool-tile disable-tile-content-drag",
type: kSimulatorTileType,
});

0 comments on commit 31d2ad4

Please sign in to comment.