mirror of https://github.com/procxx/kepka.git
parent
ab8889b2fa
commit
633084ed9c
|
@ -106,9 +106,15 @@ TabbedPanel::TabbedPanel(
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabbedPanel::moveBottomRight(int bottom, int right) {
|
void TabbedPanel::moveBottomRight(int bottom, int right) {
|
||||||
|
const auto isNew = (_bottom != bottom || _right != right);
|
||||||
_bottom = bottom;
|
_bottom = bottom;
|
||||||
_right = right;
|
_right = right;
|
||||||
updateContentHeight();
|
// If the panel is already shown, update the position.
|
||||||
|
if (!isHidden() && isNew) {
|
||||||
|
moveByBottom();
|
||||||
|
} else {
|
||||||
|
updateContentHeight();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabbedPanel::setDesiredHeightValues(
|
void TabbedPanel::setDesiredHeightValues(
|
||||||
|
|
Loading…
Reference in New Issue