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

Enable colored text (and other misc fixes)

This commit is contained in:
Emil Ernerfeldt
2019-01-16 09:28:43 -06:00
parent 4dab7a1504
commit 7f83876005
9 changed files with 104 additions and 82 deletions

View File

@@ -11,7 +11,7 @@ mod font;
mod fonts;
mod layout;
pub mod math;
mod painter;
mod mesher;
mod style;
mod texture_atlas;
pub mod types;
@@ -21,7 +21,7 @@ pub use crate::{
emigui::Emigui,
fonts::TextStyle,
layout::{Align, LayoutOptions, Region},
painter::{Frame, Painter, Vertex},
mesher::{Frame, Vertex},
style::Style,
types::RawInput,
};