X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTInputBox.java;h=813af8823db263e5274090796e02fbf61ec958a6;hb=a69ed767c9c07cf35cf1c5f7821fc009cfe79cd2;hp=487664ab01af2dac599282f3a9fedb46e03ee330;hpb=d625990deaa2c24624adc9fbd3fcab58891f5aef;p=nikiroo-utils.git diff --git a/src/jexer/TInputBox.java b/src/jexer/TInputBox.java index 487664a..813af88 100644 --- a/src/jexer/TInputBox.java +++ b/src/jexer/TInputBox.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2017 Kevin Lamonte + * Copyright (C) 2019 Kevin Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -110,17 +110,20 @@ public class TInputBox extends TMessageBox { setHeight(getHeight() + 2); field = addField(1, getHeight() - 6, getWidth() - 4, false, text); + // Set the secondaryThread to run me + getApplication().enableSecondaryEventReceiver(this); + // Yield to the secondary thread. When I come back from the // constructor response will already be set. getApplication().yield(); } // ------------------------------------------------------------------------ - // TInputBox -------------------------------------------------------------- + // TMessageBox ------------------------------------------------------------ // ------------------------------------------------------------------------ // ------------------------------------------------------------------------ - // TMessageBox ------------------------------------------------------------ + // TInputBox -------------------------------------------------------------- // ------------------------------------------------------------------------ /**