Skip to content

Commit be22c93

Browse files
committed
scrolled content
1 parent b4f87ad commit be22c93

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

services/static-webserver/client/source/class/osparc/desktop/account/MyAccountWindow.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@ qx.Class.define("osparc.desktop.account.MyAccountWindow", {
2222
this.base(arguments, "credits", this.tr("My Account"));
2323

2424
const width = 900;
25+
const height = 700;
2526
const maxHeight = 700;
2627
this.set({
2728
width,
28-
maxHeight
29+
height,
30+
maxHeight,
2931
});
3032

3133
const myAccount = this.__myAccount = new osparc.desktop.account.MyAccount();

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ qx.Class.define("osparc.ui.window.TabbedView", {
8888
widget.set({
8989
margin: 10
9090
});
91-
page.add(widget, {
91+
const scroll = new qx.ui.container.Scroll();
92+
scroll.add(widget);
93+
page.add(scroll, {
9294
flex: 1
9395
});
9496
return page;

0 commit comments

Comments
 (0)