Tweak two demos
This commit is contained in:
parent
fd85557463
commit
a1a0d4a12a
|
@ -156,6 +156,8 @@ impl ContextMenus {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn nested_menus(ui: &mut egui::Ui) {
|
fn nested_menus(ui: &mut egui::Ui) {
|
||||||
|
ui.set_max_width(200.0); // To make sure we wrap long text
|
||||||
|
|
||||||
if ui.button("Open…").clicked() {
|
if ui.button("Open…").clicked() {
|
||||||
ui.close_menu();
|
ui.close_menu();
|
||||||
}
|
}
|
||||||
|
|
|
@ -74,8 +74,8 @@ impl crate::View for PlotDemo {
|
||||||
ui.label("Zoom with ctrl + scroll.");
|
ui.label("Zoom with ctrl + scroll.");
|
||||||
}
|
}
|
||||||
ui.label("Reset view with double-click.");
|
ui.label("Reset view with double-click.");
|
||||||
ui.add(crate::egui_github_link_file!());
|
|
||||||
});
|
});
|
||||||
|
ui.add(crate::egui_github_link_file!());
|
||||||
});
|
});
|
||||||
ui.separator();
|
ui.separator();
|
||||||
ui.horizontal(|ui| {
|
ui.horizontal(|ui| {
|
||||||
|
@ -277,7 +277,7 @@ impl LineDemo {
|
||||||
};
|
};
|
||||||
let mut plot = Plot::new("lines_demo")
|
let mut plot = Plot::new("lines_demo")
|
||||||
.legend(Legend::default())
|
.legend(Legend::default())
|
||||||
.y_axis_width(4)
|
.y_axis_width(2)
|
||||||
.show_axes(self.show_axes)
|
.show_axes(self.show_axes)
|
||||||
.show_grid(self.show_grid);
|
.show_grid(self.show_grid);
|
||||||
if self.square {
|
if self.square {
|
||||||
|
@ -673,7 +673,7 @@ impl LinkedAxesDemo {
|
||||||
.data_aspect(2.0)
|
.data_aspect(2.0)
|
||||||
.width(150.0)
|
.width(150.0)
|
||||||
.height(250.0)
|
.height(250.0)
|
||||||
.y_axis_width(3)
|
.y_axis_width(2)
|
||||||
.y_axis_label("y")
|
.y_axis_label("y")
|
||||||
.y_axis_position(egui_plot::HPlacement::Right)
|
.y_axis_position(egui_plot::HPlacement::Right)
|
||||||
.link_axis(link_group_id, self.link_x, self.link_y)
|
.link_axis(link_group_id, self.link_x, self.link_y)
|
||||||
|
@ -962,7 +962,7 @@ impl ChartsDemo {
|
||||||
Plot::new("Normal Distribution Demo")
|
Plot::new("Normal Distribution Demo")
|
||||||
.legend(Legend::default())
|
.legend(Legend::default())
|
||||||
.clamp_grid(true)
|
.clamp_grid(true)
|
||||||
.y_axis_width(3)
|
.y_axis_width(2)
|
||||||
.allow_zoom(self.allow_zoom)
|
.allow_zoom(self.allow_zoom)
|
||||||
.allow_drag(self.allow_drag)
|
.allow_drag(self.allow_drag)
|
||||||
.allow_scroll(self.allow_scroll)
|
.allow_scroll(self.allow_scroll)
|
||||||
|
|
Loading…
Reference in New Issue