mirror of
https://git.aramjonghu.dev/AramJonghu/rustlings.git
synced 2026-09-05 17:53:29 +02:00
Remove inline
This commit is contained in:
@@ -148,14 +148,12 @@ impl<'a> UiState<'a> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn select_first(&mut self) {
|
pub fn select_first(&mut self) {
|
||||||
if self.n_rows > 0 {
|
if self.n_rows > 0 {
|
||||||
self.table_state.select(Some(0));
|
self.table_state.select(Some(0));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn select_last(&mut self) {
|
pub fn select_last(&mut self) {
|
||||||
if self.n_rows > 0 {
|
if self.n_rows > 0 {
|
||||||
self.table_state.select(Some(self.n_rows - 1));
|
self.table_state.select(Some(self.n_rows - 1));
|
||||||
|
|||||||
Reference in New Issue
Block a user