Fixed #9156
This commit is contained in:
@@ -105,8 +105,9 @@ public class MessageBlock extends Block{
|
|||||||
public void buildConfiguration(Table table){
|
public void buildConfiguration(Table table){
|
||||||
table.button(Icon.pencil, Styles.cleari, () -> {
|
table.button(Icon.pencil, Styles.cleari, () -> {
|
||||||
if(mobile){
|
if(mobile){
|
||||||
|
var contents = this.message.toString();
|
||||||
Core.input.getTextInput(new TextInput(){{
|
Core.input.getTextInput(new TextInput(){{
|
||||||
text = message.toString();
|
text = contents;
|
||||||
multiline = true;
|
multiline = true;
|
||||||
maxLength = maxTextLength;
|
maxLength = maxTextLength;
|
||||||
accepted = str -> {
|
accepted = str -> {
|
||||||
|
|||||||
Reference in New Issue
Block a user