1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 05:40:03 -04:00

Add a new example and change how embedding is stored

This commit is contained in:
Konkitoman
2023-07-25 16:40:03 +03:00
parent 2131f251fc
commit cb09e630a2
8 changed files with 105 additions and 96 deletions

View File

@@ -214,7 +214,7 @@ pub trait App {
// NOTE: a bright gray makes the shadows of the windows look weird.
// We use a bit of transparency so that if the user switches on the
// `transparent()` option they get immediate results.
egui::Color32::from_rgba_unmultiplied(12, 12, 12, 180).to_normalized_gamma_f32()
egui::Color32::from_rgba_unmultiplied(12, 12, 12, 0).to_normalized_gamma_f32()
// _visuals.window_fill() would also be a natural choice
}