mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-24 14:06:23 +01:00
- [Inspector Panel] Fix error when displaying array data on textbox.
This commit is contained in:
parent
301e43a6c2
commit
fa50176d79
1 changed files with 2 additions and 2 deletions
|
@ -379,10 +379,10 @@ function textBox(_input, _onModify) : textInput(_input, _onModify) constructor {
|
||||||
draw_text_add(_w / 2 - _wh_w - padding, _y, _text);
|
draw_text_add(_w / 2 - _wh_w - padding, _y, _text);
|
||||||
|
|
||||||
} else
|
} else
|
||||||
draw_text_add(_x + disp_x, _y, _text + suffix);
|
draw_text_add(_x + disp_x, _y, $"{_text}{suffix}");
|
||||||
|
|
||||||
} else
|
} else
|
||||||
draw_text_add(_x + disp_x, _y, _text + suffix);
|
draw_text_add(_x + disp_x, _y, $"{_text}{suffix}");
|
||||||
|
|
||||||
draw_set_alpha(1);
|
draw_set_alpha(1);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue