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

Replace clipboard with copypasta (#221)

- Fixes #146
This commit is contained in:
Jay Oster
2021-03-10 02:16:45 -08:00
committed by GitHub
parent 017d602fe5
commit 269bcdfce3
3 changed files with 63 additions and 43 deletions

View File

@@ -22,12 +22,12 @@ pub use backend::*;
pub use painter::Painter;
use {
clipboard::ClipboardProvider,
copypasta::ClipboardProvider,
egui::*,
glium::glutin::{self, event::VirtualKeyCode, event_loop::ControlFlow},
};
pub use clipboard::ClipboardContext; // TODO: remove
pub use copypasta::ClipboardContext; // TODO: remove
pub struct GliumInputState {
pub pointer_pos_in_points: Option<Pos2>,