fix(term): address clang warnings

This commit is contained in:
Leroy Hopson 2024-02-25 20:53:00 +13:00
parent 43634affa3
commit 14288352fd
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA

View file

@ -698,6 +698,8 @@ void Terminal::_handle_mouse_wheel(Ref<InputEventMouseButton> event) {
case MOUSE_BUTTON_WHEEL_DOWN: case MOUSE_BUTTON_WHEEL_DOWN:
scroll_func = &tsm_screen_sb_down; scroll_func = &tsm_screen_sb_down;
break; break;
default:
break;
}; };
if (scroll_func != nullptr) { if (scroll_func != nullptr) {
@ -716,7 +718,7 @@ void Terminal::_handle_selection(Ref<InputEventMouse> event) {
Ref<InputEventMouseButton> mb = event; Ref<InputEventMouseButton> mb = event;
if (mb.is_valid()) { if (mb.is_valid()) {
if (!mb->is_pressed() || !mb->get_button_index() == MOUSE_BUTTON_LEFT) if (!mb->is_pressed() || mb->get_button_index() != MOUSE_BUTTON_LEFT)
return; return;
if (selecting) { if (selecting) {