Skip to content

Commit 0f6b49f

Browse files
committed
minor
1 parent c629c52 commit 0f6b49f

File tree

1 file changed

+3
-2
lines changed
  • services/static-webserver/client/source/class/osparc/ui/window

1 file changed

+3
-2
lines changed

services/static-webserver/client/source/class/osparc/ui/window/TabbedView.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,15 @@ qx.Class.define("osparc.ui.window.TabbedView", {
3737
* @param {page section's name} sectionName
3838
*/
3939
createSectionBox: function(sectionName) {
40-
const box = new qx.ui.groupbox.GroupBox(sectionName);
40+
const box = new qx.ui.groupbox.GroupBox(sectionName).set({
41+
layout: new qx.ui.layout.VBox(10),
42+
});
4143
box.getChildControl("legend").set({
4244
font: "text-14"
4345
});
4446
box.getChildControl("frame").set({
4547
backgroundColor: "transparent"
4648
});
47-
box.setLayout(new qx.ui.layout.VBox(10));
4849
return box;
4950
},
5051

0 commit comments

Comments
 (0)