We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c629c52 commit 0f6b49fCopy full SHA for 0f6b49f
services/static-webserver/client/source/class/osparc/ui/window/TabbedView.js
@@ -37,14 +37,15 @@ qx.Class.define("osparc.ui.window.TabbedView", {
37
* @param {page section's name} sectionName
38
*/
39
createSectionBox: function(sectionName) {
40
- const box = new qx.ui.groupbox.GroupBox(sectionName);
+ const box = new qx.ui.groupbox.GroupBox(sectionName).set({
41
+ layout: new qx.ui.layout.VBox(10),
42
+ });
43
box.getChildControl("legend").set({
44
font: "text-14"
45
});
46
box.getChildControl("frame").set({
47
backgroundColor: "transparent"
48
- box.setLayout(new qx.ui.layout.VBox(10));
49
return box;
50
},
51
0 commit comments