You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found two kinds of mouse pointer overlaped and blink one after another when the mouse point to for example, textarea, conner of one egui window on ubuntu linux.
how to remove miniquad pointer when operate in area of egui?
The text was updated successfully, but these errors were encountered:
everything is ok when i remove following line from the file lib.rs
if cursor_icon == egui::CursorIcon::None {
mq_ctx.show_mouse(false);
} else {
///////////////////remove this line mq_ctx.show_mouse(true);
let mq_cursor_icon = to_mq_cursor_icon(cursor_icon);
let mq_cursor_icon = mq_cursor_icon.unwrap_or(mq::CursorIcon::Default);
mq_ctx.set_mouse_cursor(mq_cursor_icon);
}
I found two kinds of mouse pointer overlaped and blink one after another when the mouse point to for example, textarea, conner of one egui window on ubuntu linux.
how to remove miniquad pointer when operate in area of egui?
The text was updated successfully, but these errors were encountered: