mirror of https://github.com/procxx/kepka.git
Don't close info settings with changes by click.
This commit is contained in:
parent
83fda73ce3
commit
673fea47bd
|
@ -131,6 +131,10 @@ bool LayerWidget::showSectionInternal(
|
|||
return false;
|
||||
}
|
||||
|
||||
bool LayerWidget::closeByOutsideClick() const {
|
||||
return _content->closeByOutsideClick();
|
||||
}
|
||||
|
||||
int LayerWidget::MinimalSupportedWidth() {
|
||||
auto minimalMargins = 2 * st::infoMinimalLayerMargin;
|
||||
return st::infoMinimalWidth + minimalMargins;
|
||||
|
|
|
@ -37,6 +37,8 @@ public:
|
|||
not_null<Window::SectionMemento*> memento,
|
||||
const Window::SectionShow ¶ms) override;
|
||||
|
||||
bool closeByOutsideClick() const override;
|
||||
|
||||
static int MinimalSupportedWidth();
|
||||
|
||||
protected:
|
||||
|
|
|
@ -448,6 +448,10 @@ void WrapWidget::addContentSaveButton() {
|
|||
});
|
||||
}
|
||||
|
||||
bool WrapWidget::closeByOutsideClick() const {
|
||||
return !_controller->canSaveChangesNow();
|
||||
}
|
||||
|
||||
void WrapWidget::addProfileCallsButton() {
|
||||
Expects(_topBar != nullptr);
|
||||
|
||||
|
|
|
@ -118,6 +118,8 @@ public:
|
|||
|
||||
object_ptr<Ui::RpWidget> createTopBarSurrogate(QWidget *parent);
|
||||
|
||||
bool closeByOutsideClick() const;
|
||||
|
||||
void updateGeometry(QRect newGeometry, int additionalScroll);
|
||||
int scrollTillBottom(int forHeight) const;
|
||||
rpl::producer<int> scrollTillBottomChanges() const;
|
||||
|
|
|
@ -377,6 +377,10 @@ void LayerStackWidget::mousePressEvent(QMouseEvent *e) {
|
|||
if (!layer->closeByOutsideClick()) {
|
||||
return;
|
||||
}
|
||||
} else if (const auto special = _specialLayer.data()) {
|
||||
if (!special->closeByOutsideClick()) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
hideCurrent(anim::type::normal);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue