mirror of
https://github.com/emilk/egui.git
synced 2026-09-01 06:10:06 -04:00
Change default plot line thickness from 1.0 to 1.5 (#3918)
This commit is contained in:
@@ -370,7 +370,7 @@ impl Line {
|
|||||||
pub fn new(series: impl Into<PlotPoints>) -> Self {
|
pub fn new(series: impl Into<PlotPoints>) -> Self {
|
||||||
Self {
|
Self {
|
||||||
series: series.into(),
|
series: series.into(),
|
||||||
stroke: Stroke::new(1.0, Color32::TRANSPARENT),
|
stroke: Stroke::new(1.5, Color32::TRANSPARENT), // Note: a stroke of 1.0 (or less) can look bad on low-dpi-screens
|
||||||
name: Default::default(),
|
name: Default::default(),
|
||||||
highlight: false,
|
highlight: false,
|
||||||
fill: None,
|
fill: None,
|
||||||
|
|||||||
Reference in New Issue
Block a user