1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-03 15:20:05 -04:00

Add tests for StyleProvider and ensure every property works (#8477)

Follow up to #8455

Based on #8485

---------

Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Lucas Meurer
2026-09-03 16:50:30 +02:00
committed by GitHub
parent 2b34fe0c1c
commit 9cb53feab4
9 changed files with 363 additions and 15 deletions

View File

@@ -784,7 +784,7 @@ pub fn textedit_hint_text_should_follow_text_alignment() {
egui::TextEdit::singleline(&mut input)
.hint_text("Hint")
.desired_width(200.0)
.horizontal_align(egui::Align::Center),
.align(egui::Align2::CENTER_TOP),
);
});
harness.run();