| 25 | } |
| 26 | |
| 27 | void ExtendedTextBox::OnMouseDown(vector2i_t mousePos){ |
| 28 | if((mousePos.x - fixedBounds.pos.x) > LINE_NUM_PANEL_WIDTH){ |
| 29 | fixedBounds = textBoxBounds; |
| 30 | TextBox::OnMouseDown(mousePos); |
| 31 | fixedBounds = normalBounds; |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | void ExtendedTextBox::OnMouseUp(vector2i_t mousePos){ |
| 36 | if((mousePos.x - fixedBounds.pos.x) > LINE_NUM_PANEL_WIDTH){ |
nothing calls this directly
no outgoing calls
no test coverage detected