1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 13:20:05 -04:00

Merge branch 'emilk:main' into TextEdit-Atoms-Alignment

This commit is contained in:
RndUsr123
2026-03-25 12:47:06 +00:00
committed by GitHub

View File

@@ -265,10 +265,11 @@ impl UiStack {
let mut total = Color32::TRANSPARENT; let mut total = Color32::TRANSPARENT;
for node in self.iter() { for node in self.iter() {
let fill = node.frame().fill; let fill = node.frame().fill;
if fill.is_opaque() { if fill != Color32::TRANSPARENT {
return fill;
} else if fill != Color32::TRANSPARENT {
total = fill.blend(total); total = fill.blend(total);
if total.is_opaque() {
break;
}
} }
} }
total total