Switched to enabled pull-to-next by default on all platforms.

This commit is contained in:
23rd
2026-07-11 07:48:08 +03:00
parent 5381dd8eb9
commit 8a01a01a27
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -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;
+1 -1
View File
@@ -1129,7 +1129,7 @@ private:
bool _suggestAnimatedEmoji = true;
rpl::variable<bool> _cornerReply = true;
rpl::variable<bool> _cornerReaction = true;
rpl::variable<bool> _pullToNextChannel = false;
rpl::variable<bool> _pullToNextChannel = true;
rpl::variable<bool> _spellcheckerEnabled = true;
PlaybackSpeed _videoPlaybackSpeed;
rpl::variable<PlaybackSpeed> _voicePlaybackSpeed;