| 33 | } |
| 34 | |
| 35 | void ExtendedTextBox::OnMouseUp(vector2i_t mousePos){ |
| 36 | if((mousePos.x - fixedBounds.pos.x) > LINE_NUM_PANEL_WIDTH){ |
| 37 | fixedBounds = textBoxBounds; |
| 38 | TextBox::OnMouseUp(mousePos); |
| 39 | fixedBounds = normalBounds; |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | void ExtendedTextBox::OnMouseMove(vector2i_t mousePos){ |
| 44 | if((mousePos.x - fixedBounds.pos.x) > LINE_NUM_PANEL_WIDTH){ |
nothing calls this directly
no outgoing calls
no test coverage detected