implement super janky egui stuff

This commit is contained in:
Simon Gardling 2022-04-23 20:18:26 -04:00
parent 55d274d648
commit 8434a95b71
2 changed files with 9 additions and 9 deletions

16
Cargo.lock generated
View File

@ -485,7 +485,7 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
[[package]]
name = "eframe"
version = "0.17.0"
source = "git+https://github.com/Titaniumtown/egui.git#01e11a8e5b87aa1d7c35c637315b850b941b5e59"
source = "git+https://github.com/Titaniumtown/egui.git#b936365a62ba9e857fabc651c1cfb328fe5b17cb"
dependencies = [
"egui",
"egui-winit",
@ -497,7 +497,7 @@ dependencies = [
[[package]]
name = "egui"
version = "0.17.0"
source = "git+https://github.com/Titaniumtown/egui.git#01e11a8e5b87aa1d7c35c637315b850b941b5e59"
source = "git+https://github.com/Titaniumtown/egui.git#b936365a62ba9e857fabc651c1cfb328fe5b17cb"
dependencies = [
"ahash",
"epaint",
@ -508,7 +508,7 @@ dependencies = [
[[package]]
name = "egui-winit"
version = "0.17.0"
source = "git+https://github.com/Titaniumtown/egui.git#01e11a8e5b87aa1d7c35c637315b850b941b5e59"
source = "git+https://github.com/Titaniumtown/egui.git#b936365a62ba9e857fabc651c1cfb328fe5b17cb"
dependencies = [
"arboard",
"egui",
@ -523,7 +523,7 @@ dependencies = [
[[package]]
name = "egui_glow"
version = "0.17.0"
source = "git+https://github.com/Titaniumtown/egui.git#01e11a8e5b87aa1d7c35c637315b850b941b5e59"
source = "git+https://github.com/Titaniumtown/egui.git#b936365a62ba9e857fabc651c1cfb328fe5b17cb"
dependencies = [
"bytemuck",
"egui",
@ -540,7 +540,7 @@ dependencies = [
[[package]]
name = "egui_web"
version = "0.17.0"
source = "git+https://github.com/Titaniumtown/egui.git#01e11a8e5b87aa1d7c35c637315b850b941b5e59"
source = "git+https://github.com/Titaniumtown/egui.git#b936365a62ba9e857fabc651c1cfb328fe5b17cb"
dependencies = [
"bytemuck",
"egui",
@ -563,7 +563,7 @@ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
[[package]]
name = "emath"
version = "0.17.0"
source = "git+https://github.com/Titaniumtown/egui.git#01e11a8e5b87aa1d7c35c637315b850b941b5e59"
source = "git+https://github.com/Titaniumtown/egui.git#b936365a62ba9e857fabc651c1cfb328fe5b17cb"
dependencies = [
"bytemuck",
]
@ -571,7 +571,7 @@ dependencies = [
[[package]]
name = "epaint"
version = "0.17.0"
source = "git+https://github.com/Titaniumtown/egui.git#01e11a8e5b87aa1d7c35c637315b850b941b5e59"
source = "git+https://github.com/Titaniumtown/egui.git#b936365a62ba9e857fabc651c1cfb328fe5b17cb"
dependencies = [
"ab_glyph",
"ahash",
@ -585,7 +585,7 @@ dependencies = [
[[package]]
name = "epi"
version = "0.17.0"
source = "git+https://github.com/Titaniumtown/egui.git#01e11a8e5b87aa1d7c35c637315b850b941b5e59"
source = "git+https://github.com/Titaniumtown/egui.git#b936365a62ba9e857fabc651c1cfb328fe5b17cb"
dependencies = [
"egui",
"glow",

View File

@ -403,7 +403,7 @@ impl FunctionEntry {
plot_ui.line(
self.back_data
.to_line()
.color(main_plot_color)
.stroke(egui::Stroke::new(2.0, main_plot_color))
.name(&self.raw_func_str),
);
}