Skip to content

Commit 9ee06d8

Browse files
committed
do not touch
1 parent fd9cf74 commit 9ee06d8

File tree

1 file changed

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

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,14 @@ 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).set({
41-
layout: new qx.ui.layout.VBox(10),
42-
});
40+
const box = new qx.ui.groupbox.GroupBox(sectionName);
4341
box.getChildControl("legend").set({
4442
font: "text-14"
4543
});
4644
box.getChildControl("frame").set({
4745
backgroundColor: "transparent"
4846
});
47+
box.setLayout(new qx.ui.layout.VBox(10));
4948
return box;
5049
},
5150

0 commit comments

Comments
 (0)