1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

Fix(epaint): just realized that I forgot to remove a change I said I reverted

This commit is contained in:
umajho
2026-06-11 20:43:01 +08:00
parent e929a07359
commit a71f5b1b16

View File

@@ -69,13 +69,6 @@ impl std::ops::SubAssign<usize> for CCursor {
}
}
impl PartialOrd for CCursor {
#[inline]
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
self.index.partial_cmp(&other.index)
}
}
/// Row/column cursor.
///
/// This refers to rows and columns in layout terms--text wrapping creates multiple rows.