Skip to content

Commit 8855546

Browse files
committed
do not show Settings in App Mode
1 parent 1e45c42 commit 8855546

File tree

1 file changed

+2
-9
lines changed
  • services/static-webserver/client/source/class/osparc/node/slideshow

1 file changed

+2
-9
lines changed

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

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,6 @@ qx.Class.define("osparc.node.slideshow.NodeView", {
3838

3939
statics: {
4040
LOGGER_HEIGHT: 28,
41-
42-
isPropsFormShowable: function(node) {
43-
if (node && ("getPropsForm" in node) && node.getPropsForm()) {
44-
return node.getPropsForm().hasVisibleInputs();
45-
}
46-
return false;
47-
}
4841
},
4942

5043
members: {
@@ -135,8 +128,8 @@ qx.Class.define("osparc.node.slideshow.NodeView", {
135128
},
136129

137130
isSettingsGroupShowable: function() {
138-
const node = this.getNode();
139-
return this.self().isPropsFormShowable(node);
131+
// do not show Settings in App Mode
132+
return false;
140133
},
141134

142135
__iFrameChanged: function() {

0 commit comments

Comments
 (0)