mirror of https://github.com/procxx/kepka.git
Don't toggle tabbed section from OneColumn.
This commit is contained in:
parent
26532ab9b4
commit
48cbdd9d40
|
@ -3784,7 +3784,8 @@ void HistoryWidget::pushInfoToThirdSection() {
|
||||||
|
|
||||||
void HistoryWidget::toggleTabbedSelectorMode() {
|
void HistoryWidget::toggleTabbedSelectorMode() {
|
||||||
if (_tabbedPanel) {
|
if (_tabbedPanel) {
|
||||||
if (controller()->canShowThirdSection()) {
|
if (controller()->canShowThirdSection()
|
||||||
|
&& !Adaptive::OneColumn()) {
|
||||||
Auth().data().setTabbedSelectorSectionEnabled(true);
|
Auth().data().setTabbedSelectorSectionEnabled(true);
|
||||||
Auth().saveDataDelayed(kSaveTabbedSelectorSectionTimeoutMs);
|
Auth().saveDataDelayed(kSaveTabbedSelectorSectionTimeoutMs);
|
||||||
pushTabbedSelectorToThirdSection();
|
pushTabbedSelectorToThirdSection();
|
||||||
|
|
|
@ -162,7 +162,9 @@ void Controller::resizeForThirdSection() {
|
||||||
Auth().data().setTabbedSelectorSectionEnabled(false);
|
Auth().data().setTabbedSelectorSectionEnabled(false);
|
||||||
Auth().data().setThirdSectionInfoEnabled(false);
|
Auth().data().setThirdSectionInfoEnabled(false);
|
||||||
|
|
||||||
auto extendBy = st::columnMinimalWidthThird;
|
auto extendBy = qMax(
|
||||||
|
minimalThreeColumnWidth() - layout.bodyWidth,
|
||||||
|
st::columnMinimalWidthThird);
|
||||||
auto newBodyWidth = layout.bodyWidth + extendBy;
|
auto newBodyWidth = layout.bodyWidth + extendBy;
|
||||||
dialogsWidthRatio().set(
|
dialogsWidthRatio().set(
|
||||||
(dialogsWidthRatio().value() * layout.bodyWidth) / newBodyWidth,
|
(dialogsWidthRatio().value() * layout.bodyWidth) / newBodyWidth,
|
||||||
|
|
Loading…
Reference in New Issue