@@ -35,6 +35,10 @@ qx.Class.define("osparc.support.SupportCenter", {
3535 showClose : true ,
3636 } ) ;
3737
38+ this . getLayout ( ) . set ( {
39+ separator : "separator-vertical"
40+ } ) ;
41+
3842 this . getChildControl ( "home-page" ) ;
3943 this . getChildControl ( "conversations-page" ) ;
4044 this . getChildControl ( "conversation-page" ) ;
@@ -95,7 +99,7 @@ qx.Class.define("osparc.support.SupportCenter", {
9599 case "home-button" :
96100 control = new qx . ui . form . Button ( ) . set ( {
97101 label : this . tr ( "Support" ) ,
98- icon : "@FontAwesome5Solid/question-circle/16 " ,
102+ icon : "@FontAwesome5Solid/question-circle/18 " ,
99103 backgroundColor : "transparent" ,
100104 iconPosition : "top" ,
101105 allowGrowX : true ,
@@ -107,7 +111,7 @@ qx.Class.define("osparc.support.SupportCenter", {
107111 case "conversations-button" :
108112 control = new qx . ui . form . Button ( ) . set ( {
109113 label : this . tr ( "Conversations" ) ,
110- icon : "@FontAwesome5Solid/comments/16 " ,
114+ icon : "@FontAwesome5Solid/comments/18 " ,
111115 backgroundColor : "transparent" ,
112116 iconPosition : "top" ,
113117 allowGrowX : true ,
@@ -143,6 +147,7 @@ qx.Class.define("osparc.support.SupportCenter", {
143147 } ,
144148
145149 __showHome : function ( ) {
150+ this . setCaption ( this . tr ( "Support" ) ) ;
146151 this . getChildControl ( "main-stack" ) . setSelection ( [ this . getChildControl ( "home-page" ) ] ) ;
147152 this . getChildControl ( "home-button" ) . set ( {
148153 textColor : "strong-main" ,
@@ -153,6 +158,7 @@ qx.Class.define("osparc.support.SupportCenter", {
153158 } ,
154159
155160 __showConversations : function ( ) {
161+ this . setCaption ( this . tr ( "Conversations" ) ) ;
156162 this . getChildControl ( "main-stack" ) . setSelection ( [ this . getChildControl ( "conversations-stack" ) ] ) ;
157163 this . getChildControl ( "home-button" ) . set ( {
158164 textColor : "text" ,
0 commit comments