Browse Source

fix(plot): expose VLine and HLine (#422)

pull/432/head
St John Giddy 4 years ago
committed by GitHub
parent
commit
ac82cc7be3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      egui/src/widgets/plot/mod.rs

2
egui/src/widgets/plot/mod.rs

@ -7,7 +7,7 @@ mod transform;
use std::collections::{BTreeMap, HashSet};
pub use items::{Curve, Value};
use items::{HLine, VLine};
pub use items::{HLine, VLine};
use transform::{Bounds, ScreenTransform};
use crate::*;

Loading…
Cancel
Save