mirror of https://github.com/procxx/kepka.git
Fix third column appearing on window resize.
This commit is contained in:
parent
76a716007c
commit
3845985a6b
|
@ -86,6 +86,11 @@ void LayerWidget::parentResized() {
|
||||||
Window::SectionShow::Way::Forward,
|
Window::SectionShow::Way::Forward,
|
||||||
anim::type::instant,
|
anim::type::instant,
|
||||||
anim::activation::background));
|
anim::activation::background));
|
||||||
|
//
|
||||||
|
// There was a layout logic which caused layer info to become a
|
||||||
|
// third column info if the window size allows, but it was decided
|
||||||
|
// to keep layer info and third column info separated.
|
||||||
|
//
|
||||||
//} else if (_controller->canShowThirdSectionWithoutResize()) {
|
//} else if (_controller->canShowThirdSectionWithoutResize()) {
|
||||||
// takeToThirdSection();
|
// takeToThirdSection();
|
||||||
} else {
|
} else {
|
||||||
|
@ -98,7 +103,11 @@ void LayerWidget::parentResized() {
|
||||||
|
|
||||||
bool LayerWidget::takeToThirdSection() {
|
bool LayerWidget::takeToThirdSection() {
|
||||||
return false;
|
return false;
|
||||||
|
//
|
||||||
|
// There was a layout logic which caused layer info to become a
|
||||||
|
// third column info if the window size allows, but it was decided
|
||||||
|
// to keep layer info and third column info separated.
|
||||||
|
//
|
||||||
//Ui::FocusPersister persister(this);
|
//Ui::FocusPersister persister(this);
|
||||||
//auto localCopy = _controller;
|
//auto localCopy = _controller;
|
||||||
//auto memento = MoveMemento(std::move(_content));
|
//auto memento = MoveMemento(std::move(_content));
|
||||||
|
|
|
@ -395,7 +395,7 @@ void Controller::showSection(
|
||||||
const SectionShow ¶ms) {
|
const SectionShow ¶ms) {
|
||||||
if (App::wnd()->showSectionInExistingLayer(
|
if (App::wnd()->showSectionInExistingLayer(
|
||||||
&memento,
|
&memento,
|
||||||
params)) {
|
params) && !params.thirdColumn) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
App::main()->showSection(std::move(memento), params);
|
App::main()->showSection(std::move(memento), params);
|
||||||
|
|
Loading…
Reference in New Issue