fix: keep selection on last/first message instead of deselecting
Some checks failed
ci/woodpecker/pr/check Pipeline failed
Some checks failed
ci/woodpecker/pr/check Pipeline failed
When pressing down on the last message or up on the first message in chat navigation, stay on the current message instead of exiting message selection mode. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -109,17 +109,13 @@ impl<T: TdClientTrait> MessageMethods<T> for App<T> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if new_index >= total {
|
if new_index < total {
|
||||||
self.chat_state = ChatState::Normal;
|
|
||||||
} else {
|
|
||||||
*selected_index = new_index;
|
*selected_index = new_index;
|
||||||
}
|
|
||||||
self.stop_playback();
|
|
||||||
} else {
|
|
||||||
// Дошли до самого нового сообщения - выходим из режима выбора
|
|
||||||
self.chat_state = ChatState::Normal;
|
|
||||||
self.stop_playback();
|
self.stop_playback();
|
||||||
}
|
}
|
||||||
|
// Если new_index >= total — остаёмся на текущем
|
||||||
|
}
|
||||||
|
// Если уже на последнем — ничего не делаем, остаёмся на месте
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user