зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1472200 - Only the Rules panel is displayed if enabling 3-Pane Inspector while the right Inspector section is at minimum width r=jlast
Differential Revision: https://phabricator.services.mozilla.com/D49270 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
3961d153bb
Коммит
620e2c9464
|
@ -182,7 +182,7 @@ class SplitBox extends Component {
|
||||||
: x - nodeBounds.left;
|
: x - nodeBounds.left;
|
||||||
|
|
||||||
this.setState({
|
this.setState({
|
||||||
width: size,
|
width: this.getConstrainedSizeInPx(size, nodeBounds.width),
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
size = endPanelControl
|
size = endPanelControl
|
||||||
|
@ -190,11 +190,34 @@ class SplitBox extends Component {
|
||||||
: y - nodeBounds.top;
|
: y - nodeBounds.top;
|
||||||
|
|
||||||
this.setState({
|
this.setState({
|
||||||
height: size,
|
height: this.getConstrainedSizeInPx(size, nodeBounds.height),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calculates the constrained size taking into account the minimum width or
|
||||||
|
* height passed via this.props.minSize.
|
||||||
|
*
|
||||||
|
* @param {Number} requestedSize
|
||||||
|
* The requested size
|
||||||
|
* @param {Number} splitBoxWidthOrHeight
|
||||||
|
* The width or height of the splitBox
|
||||||
|
*
|
||||||
|
* @return {Number}
|
||||||
|
* The constrained size
|
||||||
|
*/
|
||||||
|
getConstrainedSizeInPx(requestedSize, splitBoxWidthOrHeight) {
|
||||||
|
let minSize = this.props.minSize + "";
|
||||||
|
|
||||||
|
if (minSize.endsWith("%")) {
|
||||||
|
minSize = (parseFloat(minSize) / 100) * splitBoxWidthOrHeight;
|
||||||
|
} else if (minSize.endsWith("px")) {
|
||||||
|
minSize = parseFloat(minSize);
|
||||||
|
}
|
||||||
|
return Math.max(requestedSize, minSize);
|
||||||
|
}
|
||||||
|
|
||||||
// Rendering
|
// Rendering
|
||||||
|
|
||||||
/* eslint-disable complexity */
|
/* eslint-disable complexity */
|
||||||
|
|
Загрузка…
Ссылка в новой задаче