1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-01 06:10:06 -04:00

Replace (ret, response) tuples with new struct InnerResponse

This commit is contained in:
Emil Ernerfeldt
2021-02-07 14:09:44 +01:00
parent df4c0257c0
commit e82fb81f07
16 changed files with 109 additions and 68 deletions

View File

@@ -112,7 +112,7 @@ impl Widgets {
ui.label(format!("{:.3}τ", self.angle / std::f32::consts::TAU))
.on_hover_text("Each τ represents one turn (τ = 2π)");
})
.1
.response
.on_hover_text("The angle is stored in radians, but presented in degrees");
ui.separator();