1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 13:16:39 +03:00

fix: Derive Eq on Selection

This commit is contained in:
Jalil David Salamé Messina 2023-03-27 02:50:23 -03:00 committed by Wez Furlong
parent 2315834109
commit 6dd8a98ff3

View File

@ -72,7 +72,7 @@ pub struct ChangeColorPair {
}
bitflags! {
#[derive(Debug, Clone, Copy, PartialEq)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct Selection :u16{
const NONE = 0;
const CLIPBOARD = 1<<1;