mirror of
https://github.com/php/php-src.git
synced 2025-08-20 01:14:28 +02:00
update ui
echo checkbox move input to bottom like a normal console
This commit is contained in:
parent
e1af08c4e7
commit
22fd520fb5
4 changed files with 110 additions and 96 deletions
|
@ -70,7 +70,12 @@ public class DebugSocket extends Socket implements Runnable {
|
|||
|
||||
command = main.getInputField().getText();
|
||||
/* send command to stdin socket */
|
||||
if (command != null) {
|
||||
if (command != null) {
|
||||
if (main.isEchoing()) {
|
||||
main.getOutputField().appendANSI("remote> ");
|
||||
main.getOutputField().appendANSI(command);
|
||||
main.getOutputField().appendANSI("\n");
|
||||
}
|
||||
output.write(
|
||||
command.getBytes());
|
||||
output.write("\n".getBytes());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue