Finished majority of mouse work. Need to add a setting and change up mouse handlers, and it'll be done.

This commit is contained in:
Mikayla Maki 2022-08-19 13:03:17 -07:00
parent efd3247ce4
commit a279f83cd6

View File

@ -664,7 +664,6 @@ impl Terminal {
pub fn left_click(&mut self, e: &MouseButtonEvent, origin: Vector2F) {
let position = e.position.sub(origin);
//TODO: Alt-click cursor position
if !self.mouse_mode(e.shift) {
let point = mouse_point(position, self.cur_size, self.last_offset);