mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-08-14 04:13:59 +02:00
Neaten a little bit of code
This commit is contained in:
@@ -348,11 +348,11 @@ void Textbox::OnKeyPress(int key, Uint16 character, bool shift, bool ctrl, bool
|
||||
}
|
||||
if(inputType == Number)
|
||||
{
|
||||
if(backingText.length()>1)
|
||||
{
|
||||
while(backingText[0] == '0')
|
||||
//Remove extra preceding 0's
|
||||
while(backingText[0] == '0' && backingText.length()>1)
|
||||
backingText.erase(backingText.begin());
|
||||
}
|
||||
|
||||
//If there is no content, replace with 0
|
||||
if(!backingText.length())
|
||||
backingText = "0";
|
||||
}
|
||||
|
Reference in New Issue
Block a user