Skip to content

Commit e479aae

Browse files
committed
it already has a scrollable container
1 parent 28c8ee5 commit e479aae

File tree

1 file changed

+1
-3
lines changed
  • services/static-webserver/client/source/class/osparc/node/slideshow

1 file changed

+1
-3
lines changed

services/static-webserver/client/source/class/osparc/node/slideshow/BaseNodeView.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,12 +240,10 @@ qx.Class.define("osparc.node.slideshow.BaseNodeView", {
240240
padding: 3,
241241
font: "text-14"
242242
});
243-
const scrollContainer = new qx.ui.container.Scroll();
244-
scrollContainer.add(descView);
245243
const title = this.tr("Instructions") + " - " + this.getNode().getLabel();
246244
const width = 500;
247245
const height = 500;
248-
const win = this.__instructionsWindow = osparc.ui.window.Window.popUpInWindow(scrollContainer, title, width, height).set({
246+
const win = this.__instructionsWindow = osparc.ui.window.Window.popUpInWindow(descView, title, width, height).set({
249247
modal: false,
250248
clickAwayClose: false
251249
});

0 commit comments

Comments
 (0)