diff --git a/Telegram/SourceFiles/core/core_settings.cpp b/Telegram/SourceFiles/core/core_settings.cpp index eb1f18a8da..c84b51445d 100644 --- a/Telegram/SourceFiles/core/core_settings.cpp +++ b/Telegram/SourceFiles/core/core_settings.cpp @@ -156,7 +156,6 @@ void LogPosition(const WindowPosition &position, const QString &name) { Settings::Settings() : _sendSubmitWay(Ui::InputSubmitSettings::Enter) -, _pullToNextChannel(::Platform::IsMac()) , _floatPlayerColumn(Window::Column::Second) , _floatPlayerCorner(RectPart::TopRight) , _dialogsWithChatWidthRatio(DefaultDialogsWidthRatio()) @@ -1653,7 +1652,7 @@ void Settings::resetOnLastLogout() { _recordVideoMessages = false; _videoQuality = {}; _chatFiltersHorizontal = false; - _pullToNextChannel = ::Platform::IsMac(); + _pullToNextChannel = true; _quickDialogAction = Dialogs::Ui::QuickDialogAction::Disabled; _notificationsVolume = 100; diff --git a/Telegram/SourceFiles/core/core_settings.h b/Telegram/SourceFiles/core/core_settings.h index 0ad95f2765..00123077e5 100644 --- a/Telegram/SourceFiles/core/core_settings.h +++ b/Telegram/SourceFiles/core/core_settings.h @@ -1129,7 +1129,7 @@ private: bool _suggestAnimatedEmoji = true; rpl::variable _cornerReply = true; rpl::variable _cornerReaction = true; - rpl::variable _pullToNextChannel = false; + rpl::variable _pullToNextChannel = true; rpl::variable _spellcheckerEnabled = true; PlaybackSpeed _videoPlaybackSpeed; rpl::variable _voicePlaybackSpeed;