mirror of https://github.com/vector-im/riot-web
Merge pull request #2369 from matrix-org/bwindels/rhsdefaultsize
Redesign: give right panel default widthpull/21833/head
commit
8df139bfab
|
@ -41,10 +41,13 @@ export default class MainSplit extends React.Component {
|
||||||
{onResized: this._onResized},
|
{onResized: this._onResized},
|
||||||
);
|
);
|
||||||
resizer.setClassNames(classNames);
|
resizer.setClassNames(classNames);
|
||||||
const rhsSize = window.localStorage.getItem("mx_rhs_size");
|
let rhsSize = window.localStorage.getItem("mx_rhs_size");
|
||||||
if (rhsSize !== null) {
|
if (rhsSize !== null) {
|
||||||
resizer.forHandleAt(0).resize(parseInt(rhsSize, 10));
|
rhsSize = parseInt(rhsSize, 10);
|
||||||
|
} else {
|
||||||
|
rhsSize = 350;
|
||||||
}
|
}
|
||||||
|
resizer.forHandleAt(0).resize(rhsSize);
|
||||||
|
|
||||||
resizer.attach();
|
resizer.attach();
|
||||||
this.resizer = resizer;
|
this.resizer = resizer;
|
||||||
|
|
Loading…
Reference in New Issue