mirror of
https://github.com/php/php-src.git
synced 2026-03-31 04:32:19 +02:00
update ui
echo checkbox move input to bottom like a normal console
This commit is contained in:
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user