mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-09-02 07:35:12 +00:00
Fix settings show animation.
This commit is contained in:
@@ -385,7 +385,7 @@ void LayerStackWidget::hideAll(anim::type animated) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void LayerStackWidget::hideTopLayer(anim::type animated) {
|
void LayerStackWidget::hideTopLayer(anim::type animated) {
|
||||||
if (_specialLayer) {
|
if (_specialLayer || _mainMenu) {
|
||||||
hideLayers(animated);
|
hideLayers(animated);
|
||||||
} else {
|
} else {
|
||||||
hideAll(animated);
|
hideAll(animated);
|
||||||
@@ -393,7 +393,7 @@ void LayerStackWidget::hideTopLayer(anim::type animated) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool LayerStackWidget::layerShown() const {
|
bool LayerStackWidget::layerShown() const {
|
||||||
return _specialLayer || currentLayer();
|
return _specialLayer || currentLayer() || _mainMenu;
|
||||||
}
|
}
|
||||||
|
|
||||||
void LayerStackWidget::setCacheImages() {
|
void LayerStackWidget::setCacheImages() {
|
||||||
|
Reference in New Issue
Block a user