1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-27 07:03:14 -04:00

Compilation fix

This commit is contained in:
Emil Ernerfeldt
2020-04-11 18:18:52 +02:00
parent f4f03d49eb
commit dba42b1ada
2 changed files with 2 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
use emigui::{color::*, label, math::*, types::*, widgets::*, Align, Region, TextStyle};
use emigui::{color::*, label, math::*, widgets::*, Align, Outline, PaintCmd, Region, TextStyle};
pub fn show_value_gui(value: &mut usize, gui: &mut Region) {
gui.add(Slider::usize(value, 1, 1000));